Fix using rotate and resize filters at the same time (#78)
This commit is contained in:
parent
5a9d4a0f04
commit
fca866e1d8
8 changed files with 118 additions and 7 deletions
|
|
@ -50,6 +50,21 @@ abstract class AbstractData implements \Countable
|
|||
return $this->properties[$property];
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the property value given its name.
|
||||
*
|
||||
* @param string $property
|
||||
* @param mixed $value
|
||||
*
|
||||
* @return AbstractData
|
||||
*/
|
||||
public function set($property, $value)
|
||||
{
|
||||
$this->properties[$property] = $value;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns all property names.
|
||||
*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue