Completed
Push — develop ( aba1ed...ebe2d3 )
by Oyebanji Jacob
02:15
created
src/Model.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -178,7 +178,7 @@
 block discarded – undo
178 178
     /**
179 179
      * Save the model data to the database.
180 180
      * 
181
-     * @return boolean
181
+     * @return integer
182 182
      */
183 183
     public function save()
184 184
     {
Please login to merge, or discard this patch.
src/Exception/ModelNotFoundException.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -5,6 +5,9 @@
 block discarded – undo
5 5
 class ModelNotFoundException extends \Exception 
6 6
 {
7 7
 
8
+    /**
9
+     * @param integer $id
10
+     */
8 11
     function __construct($id)
9 12
     {
10 13
         parent::__construct('The requested Model with ' . $id . ' does not exist');
Please login to merge, or discard this patch.