litecqrs-php
litecqrs-php copied to clipboard
Tests for CRUD Plugin
On the method
protected function applyResourceCreated(ResourceCreatedEvent $event)
{
$properties = array_keys(get_class_vars($this));
foreach ($event->data as $key => $value) {
if (in_array($key, $properties)) {
$this->$key = $value;
}
}
}
get_class_vars($this) should be get_object_vars($this)
There is Warning: get_class_vars() expects parameter 1 to be string, object given