Completed
Push — master ( 70f9d4...50b360 )
by Peter
49:14 queued 24:14
created
src/Decorators/EmbeddedArrayDecorator.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -75,6 +75,7 @@
 block discarded – undo
75 75
 	 * @param AnnotatedInterface[] $instances
76 76
 	 * @param mixed[] $dbValue
77 77
 	 * @param mixed[] $data
78
+	 * @param AnnotatedInterface $parent
78 79
 	 * @return AnnotatedInterface|null
79 80
 	 */
80 81
 	private function _getInstance($instances, $dbValue, $data, $parent = null, $parentField = '')
Please login to merge, or discard this patch.
src/EntityManager.php 1 patch
Doc Comments   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -613,6 +613,9 @@  discard block
 block discarded – undo
613 613
 
614 614
 // <editor-fold defaultstate="collapsed" desc="Event and Signal handling">
615 615
 
616
+	/**
617
+	 * @param AnnotatedInterface $model
618
+	 */
616 619
 	private function beforeValidate($model)
617 620
 	{
618 621
 		AspectManager::addAspect($model, self::AspectSaving);
@@ -621,7 +624,7 @@  discard block
 block discarded – undo
621 624
 	/**
622 625
 	 * Take care of EventBeforeSave
623 626
 	 * @see EventBeforeSave
624
-	 * @param                 $model
627
+	 * @param                 AnnotatedInterface $model
625 628
 	 * @param string $event
626 629
 	 * @return boolean
627 630
 	 */
@@ -643,7 +646,7 @@  discard block
 block discarded – undo
643 646
 	/**
644 647
 	 * Take care of EventAfterSave
645 648
 	 * @see EventAfterSave
646
-	 * @param                 $model
649
+	 * @param                 AnnotatedInterface $model
647 650
 	 * @param null|ModelEvent $event
648 651
 	 */
649 652
 	private function afterSave($model, $event = null)
Please login to merge, or discard this patch.
src/Transformers/YamlString.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
 
32 32
 	/**
33 33
 	 * Returns the given object as an associative array
34
-	 * @param AnnotatedInterface|object $model
34
+	 * @param AnnotatedInterface $model
35 35
 	 * @param string[] $fields Fields to transform
36 36
 	 *
37 37
 	 * @param int   $inline                 The level where you switch to inline YAML
Please login to merge, or discard this patch.
src/Transformers/JsonString.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 
31 31
 	/**
32 32
 	 * Returns the given object as an associative array
33
-	 * @param AnnotatedInterface|object $model
33
+	 * @param AnnotatedInterface $model
34 34
 	 * @param string[] $fields Fields to transform
35 35
 	 * @param int $options json_encode options
36 36
 	 * @return array an associative array of the contents of this object
Please login to merge, or discard this patch.