Completed
Push — master ( 48c6f7...be7457 )
by Chris
02:14
created
src/Darya/Events/Dispatcher.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
 	{
55 55
 		$this->touch($event);
56 56
 		
57
-		$this->listeners[$event] = array_filter($this->listeners[$event], function ($value) use ($callable) {
57
+		$this->listeners[$event] = array_filter($this->listeners[$event], function($value) use ($callable) {
58 58
 			return $value !== $callable;
59 59
 		});
60 60
 	}
Please login to merge, or discard this patch.
src/Darya/ORM/Model.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -391,7 +391,7 @@
 block discarded – undo
391 391
 	 */
392 392
 	public function setMany($values)
393 393
 	{
394
-		foreach ((array) $values as $attribute => $value){
394
+		foreach ((array) $values as $attribute => $value) {
395 395
 			$this->set($attribute, $value);
396 396
 		}
397 397
 	}
Please login to merge, or discard this patch.