Fix using rotate and resize filters at the same time (#78)

This commit is contained in:
Romain Neutron 2013-11-29 13:25:49 +01:00
commit fca866e1d8
8 changed files with 118 additions and 7 deletions

View file

@ -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.
*