Completed
Branch master (32d8c1)
by Marcelo
05:15
created
src/RepositoryAbstract.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     }
33 33
 
34 34
     /**
35
-     * @return MySql
35
+     * @return StorageInterface
36 36
      */
37 37
     protected function getStorage()
38 38
     {
Please login to merge, or discard this patch.
src/Storage/Pdo/AbstractStorage.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -175,6 +175,9 @@
 block discarded – undo
175 175
         );
176 176
     }
177 177
 
178
+    /**
179
+     * @param integer $limit
180
+     */
178 181
     public function findAllBy(array $conditions = array(), $limit = null, $offset = 0)
179 182
     {
180 183
         $sql = sprintf('SELECT * FROM %s', $this->getTableName());
Please login to merge, or discard this patch.