1
0
mirror of https://github.com/Intervention/image.git synced 2025-08-26 23:35:12 +02:00

added properties documentation

This commit is contained in:
Oliver Vogel
2013-01-29 23:13:47 +01:00
parent b2e0006bd6
commit 141ac6c2b2

View File

@@ -7,16 +7,58 @@ use Illuminate\Filesystem\Filesystem;
class Image class Image
{ {
/**
* The image resource identifier of current image
* @var resource
*/
public $resource; public $resource;
/**
* Type of current image
* @var string
*/
public $type; public $type;
/**
* Width of current image
* @var integer
*/
public $width; public $width;
/**
* Height of current image
* @var integer
*/
public $height; public $height;
/**
* Directory path of current image
* @var string
*/
public $dirname; public $dirname;
/**
* Trailing name component of current image filename
* @var string
*/
public $basename; public $basename;
/**
* File extension of current image filename
* @var string
*/
public $extension; public $extension;
/**
* Combined filename (basename and extension)
* @var [type]
*/
public $filename; public $filename;
/**
* Instance of Illuminate\Filesystem\Filesystem
* @var Filesystem
*/
protected $filesystem; protected $filesystem;
/** /**