1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-20 04:31:24 +02:00

minor changes

This commit is contained in:
Oliver Vogel
2013-02-03 17:57:42 +01:00
parent dd2ce4364c
commit db1fb01f9c

View File

@@ -78,9 +78,9 @@ class Image
* @param string $path
* @return Image
*/
public static function make($path)
public static function make($path, $width = null, $height = null)
{
return new Image($path);
return new Image($path, $width, $height);
}
/**