Completed
Push — master ( 119440...87e4b9 )
by Peter
16:02
created
src/EntityManager.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -304,7 +304,6 @@  discard block
 block discarded – undo
304 304
 	 *
305 305
 	 * @param boolean $runValidation whether to perform validation before saving the record.
306 306
 	 * If the validation fails, the record will not be saved to database.
307
-	 * @param AnnotatedInterface $model if want to insert different model than set in constructor
308 307
 	 * @return boolean whether the saving succeeds
309 308
 	 * @since v1.0
310 309
 	 */
@@ -347,7 +346,6 @@  discard block
 block discarded – undo
347 346
 	 *
348 347
 	 * @param boolean $runValidation whether to perform validation before saving the record.
349 348
 	 * If the validation fails, the record will not be saved to database.
350
-	 * @param AnnotatedInterface $model if want to insert different model than set in constructor
351 349
 	 * @return boolean whether the saving succeeds
352 350
 	 * @since v1.0
353 351
 	 */
@@ -555,6 +553,7 @@  discard block
 block discarded – undo
555 553
 	/**
556 554
 	 * Take care of EventBeforeSave
557 555
 	 * @see EventBeforeSave
556
+	 * @param AnnotatedInterface $model
558 557
 	 * @return boolean
559 558
 	 */
560 559
 	private function _beforeSave($model, $event = null)
@@ -574,6 +573,7 @@  discard block
 block discarded – undo
574 573
 	/**
575 574
 	 * Take care of EventAfterSave
576 575
 	 * @see EventAfterSave
576
+	 * @param AnnotatedInterface $model
577 577
 	 */
578 578
 	private function _afterSave($model, $event = null)
579 579
 	{
Please login to merge, or discard this patch.
src/Interfaces/EntityManagerInterface.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,6 @@
 block discarded – undo
48 48
 	 *
49 49
 	 * @param boolean $runValidation whether to perform validation before saving the record.
50 50
 	 * If the validation fails, the record will not be saved to database.
51
-	 * @param AnnotatedInterface $model if want to insert different model than set in constructor
52 51
 	 * @return boolean whether the saving succeeds
53 52
 	 * @since v1.0
54 53
 	 */
Please login to merge, or discard this patch.
src/Traits/EntityManagerTrait.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,6 @@
 block discarded – undo
49 49
 	 *
50 50
 	 * @param boolean $runValidation whether to perform validation before saving the record.
51 51
 	 * If the validation fails, the record will not be saved to database.
52
-	 * @param AnnotatedInterface $model if want to insert different model than set in constructor
53 52
 	 * @return boolean whether the saving succeeds
54 53
 	 * @since v1.0
55 54
 	 */
Please login to merge, or discard this patch.