Completed
Push — master ( 443a84...3fea7a )
by recca
01:48
created
src/AbstractRepository.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
      * @param \Recca0120\Repository\Criteria|array $criteria
73 73
      * @param int                                  $count
74 74
      * @param callable                             $callback
75
-     * @return bool
75
+     * @return \Illuminate\Support\Collection
76 76
      */
77 77
     public function chunk($criteria, $count, callable $callback)
78 78
     {
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Recca0120\Repository;
4 4
 
5
-use Illuminate\Database\Eloquent\Model;
6 5
 use Recca0120\Repository\Contracts\Repository as RepositoryContract;
7 6
 
8 7
 abstract class AbstractRepository implements RepositoryContract
Please login to merge, or discard this patch.
src/Criteria.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
     /**
49 49
      * push.
50 50
      *
51
-     * @param \Recca0120\Repository\Core\Action $action
51
+     * @param Action $action
52 52
      * @return self
53 53
      */
54 54
     public function push(Action $action)
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
      * alias raw.
81 81
      *
82 82
      * @param mixed $value
83
-     * @return \Recca0120\Repository\CriteriaExpression
83
+     * @return Expression
84 84
      */
85 85
     public static function expr($value)
86 86
     {
Please login to merge, or discard this patch.
src/DeprecatedMethod.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,6 @@  discard block
 block discarded – undo
48 48
      * findBy.
49 49
      *
50 50
      * @param \Recca0120\Repository\Criteria|array $criteria
51
-     * @param array                                $orderBy
52 51
      * @param int                                  $limit
53 52
      * @param int                                  $offset
54 53
      * @return \Illuminate\Support\Collection
@@ -132,6 +131,7 @@  discard block
 block discarded – undo
132 131
 
133 132
     /**
134 133
      * deprecated.
134
+     * @param string $method
135 135
      */
136 136
     protected function deprecated($method)
137 137
     {
Please login to merge, or discard this patch.
src/EloquentRepository.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,6 @@
 block discarded – undo
30 30
      * get.
31 31
      *
32 32
      * @param \Recca0120\Repository\Criteria|array $criteria
33
-     * @param array                                $orderBy
34 33
      * @param int                                  $limit
35 34
      * @param int                                  $offset
36 35
      * @return \Illuminate\Support\Collection
Please login to merge, or discard this patch.