Completed
Push — master ( 63b6bc...b31e17 )
by Jared
04:58 queued 02:33
created
src/Driver/DatabaseDriver.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -268,7 +268,6 @@  discard block
 block discarded – undo
268 268
     /**
269 269
      * Returns a prefixed where statement.
270 270
      *
271
-     * @param string $columns
272 271
      * @param string $tablename
273 272
      *
274 273
      * @return string
@@ -296,7 +295,6 @@  discard block
 block discarded – undo
296 295
     /**
297 296
      * Returns a prefixed sort statement.
298 297
      *
299
-     * @param string $columns
300 298
      * @param string $tablename
301 299
      *
302 300
      * @return string
Please login to merge, or discard this patch.
src/ACLModel.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
 
110 110
         // check the if the requester has the `create`
111 111
         // permission before creating
112
-        static::creating(function (ModelEvent $event) {
112
+        static::creating(function(ModelEvent $event) {
113 113
             $model = $event->getModel();
114 114
 
115 115
             if (!$model->can('create', ACLModel::getRequester())) {
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
 
122 122
         // check the if the requester has the `edit`
123 123
         // permission before updating
124
-        static::updating(function (ModelEvent $event) {
124
+        static::updating(function(ModelEvent $event) {
125 125
             $model = $event->getModel();
126 126
 
127 127
             if (!$model->can('edit', ACLModel::getRequester())) {
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
 
134 134
         // check the if the requester has the `delete`
135 135
         // permission before deleting
136
-        static::deleting(function (ModelEvent $event) {
136
+        static::deleting(function(ModelEvent $event) {
137 137
             $model = $event->getModel();
138 138
 
139 139
             if (!$model->can('delete', ACLModel::getRequester())) {
Please login to merge, or discard this patch.
src/Cacheable.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -157,7 +157,7 @@
 block discarded – undo
157 157
 
158 158
         // cache the local properties
159 159
         $this->getCacheItem()
160
-             ->set($this->_values, $this->getCacheTTL());
160
+                ->set($this->_values, $this->getCacheTTL());
161 161
 
162 162
         return $this;
163 163
     }
Please login to merge, or discard this patch.
src/Errors.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -144,7 +144,7 @@
 block discarded – undo
144 144
      * @param string       $error
145 145
      * @param string|false $locale
146 146
      *
147
-     * @return array
147
+     * @return string
148 148
      */
149 149
     private function parse($property, $error, $locale)
150 150
     {
Please login to merge, or discard this patch.
src/Validator.php 1 patch
Doc Comments   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -120,7 +120,6 @@  discard block
 block discarded – undo
120 120
      * of parameters to be specified. This example would generate 
121 121
      * [['numeric', []], ['range', [10, 30]]].
122 122
      *
123
-     * @param string $rules
124 123
      *
125 124
      * @return array
126 125
      */
@@ -254,7 +253,6 @@  discard block
 block discarded – undo
254 253
     /**
255 254
      * Validates an e-mail address.
256 255
      *
257
-     * @param string $email      e-mail address
258 256
      * @param array  $parameters parameters for validation
259 257
      *
260 258
      * @return bool success
@@ -284,7 +282,7 @@  discard block
 block discarded – undo
284 282
      *
285 283
      * @param mixed $value
286 284
      *
287
-     * @return bool
285
+     * @return integer
288 286
      */
289 287
     private function date($value)
290 288
     {
Please login to merge, or discard this patch.