Update composer dependencies

This commit is contained in:
Kijin Sung 2017-06-29 23:39:23 +09:00
parent 49cc39e507
commit cbd324c35b
428 changed files with 17862 additions and 5885 deletions

View file

@ -54,6 +54,8 @@ abstract class Minify
* Add a file or straight-up code to be minified.
*
* @param string|string[] $data
*
* @return static
*/
public function add($data /* $data = null, ... */)
{
@ -84,6 +86,8 @@ abstract class Minify
// store data
$this->data[$key] = $value;
}
return $this;
}
/**