Skip to content

Commit

Permalink
Improved Compiler API functions PHP inline documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
ThierryA committed Feb 10, 2016
1 parent 9ef6f47 commit a6dfd4a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/api/compiler/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
*
* @param string $id A unique string used as a reference. Similar to the WordPress scripts
* $handle argument.
* @param string|array $fragments Path or url to internal or external file(s).
* @param string|array $fragments File(s) absolute path. Internal or external file(s) url accepted but may increase compiling time.
* @param array $args {
* Optional. Array of arguments used by the compiler.
*
Expand Down Expand Up @@ -58,7 +58,7 @@ function beans_compile_css_fragments( $id, $fragments, $args = array() ) {
* @since 1.0.0
*
* @param string $id The compiler ID. Similar to the WordPress scripts $handle argument.
* @param string|array $fragments Path or url to internal or external file(s).
* @param string|array $fragments File(s) absolute path. Internal or external file(s) url accepted but may increase compiling time.
* @param array $args {
* Optional. Array of arguments used by the compiler.
*
Expand Down Expand Up @@ -93,7 +93,7 @@ function beans_compile_less_fragments( $id, $fragments, $args = array() ) {
* @since 1.0.0
*
* @param string $id The compiler ID. Similar to the WordPress scripts $handle argument.
* @param string|array $fragments Path or url to internal or external file(s).
* @param string|array $fragments File(s) absolute path. Internal or external file(s) url accepted but may increase compiling time.
* @param array $args {
* Optional. Array of arguments used by the compiler.
*
Expand Down Expand Up @@ -130,7 +130,7 @@ function beans_compile_js_fragments( $id, $fragments, $args = array() ) {
* @since 1.0.0
*
* @param string $id The compiler ID. Similar to the WordPress scripts $handle argument.
* @param string|array $fragments Path or url to internal or external file(s).
* @param string|array $fragments File(s) absolute path. Internal or external file(s) url accepted but may increase compiling time.
* @param string $format Compiler format the fragments should be added to. Accepts 'css',
* 'less' or 'js'.
*/
Expand Down

0 comments on commit a6dfd4a

Please sign in to comment.