Such linting, such wow. Much clean.

This commit is contained in:
jgen
2014-04-28 02:56:58 -04:00
parent 8fd532e5a8
commit d4ac6ca451
9 changed files with 133 additions and 23 deletions

View File

@ -16,8 +16,12 @@
* This class is just a wrapper around SCoreException.
*/
class ImageRotateException extends SCoreException {
var $error;
/** @var string */
public $error;
/**
* @param string $error
*/
public function __construct($error) {
$this->error = $error;
}