Failed Conditions
Pull Request — master (#259)
by Maximo
02:40
created
src/Mapper/CustomFilterMapper.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 {
13 13
     /**
14 14
      * @param Baka\Database\CustomFilters\CustomFilters $filter
15
-     * @param \Canvas\Dto\CustomFilter $filterSchema
16 15
      * @return ListSchema
17 16
      */
18 17
     public function mapToObject($filter, $customFilter, array $context = [])
Please login to merge, or discard this patch.
src/Mapper/FileMapper.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,6 @@
 block discarded – undo
28 28
     }
29 29
 
30 30
     /**
31
-     * @param Canvas\Models\FileSystem $file
32 31
      * @param Canvas\Dto\Files $fileDto
33 32
      * @return Files
34 33
      */
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,6 @@
 block discarded – undo
6 6
 
7 7
 use AutoMapperPlus\CustomMapper\CustomMapper;
8 8
 use Canvas\Dto\Files;
9
-use Canvas\Models\FileSystemEntities;
10 9
 
11 10
 // You can either extend the CustomMapper, or just implement the MapperInterface
12 11
 // directly.
Please login to merge, or discard this patch.
src/Mapper/ListSchemaMapper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
     /**
19 19
      * @param SystemModules $systeModel
20 20
      * @param \Canvas\Dto\ListSchema $listSchema
21
-     * @return ListSchema
21
+     * @return \Canvas\Dto\ListSchema
22 22
      */
23 23
     public function mapToObject($systeModel, $listSchema, array $context = [])
24 24
     {
Please login to merge, or discard this patch.
src/Mapper/NotificationMapper.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,8 +6,8 @@
 block discarded – undo
6 6
 
7 7
 use AutoMapperPlus\CustomMapper\CustomMapper;
8 8
 use Canvas\Models\SystemModules;
9
-use ReflectionClass;
10 9
 use Exception;
10
+use ReflectionClass;
11 11
 
12 12
 // You can either extend the CustomMapper, or just implement the MapperInterface
13 13
 // directly.
Please login to merge, or discard this patch.
src/Mapper/UserMapper.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,10 +5,10 @@
 block discarded – undo
5 5
 namespace Canvas\Mapper;
6 6
 
7 7
 use AutoMapperPlus\CustomMapper\CustomMapper;
8
-use Canvas\Models\AccessList;
9
-use Phalcon\Di;
10 8
 use Canvas\Contracts\Mapper\RelationshipTrait;
9
+use Canvas\Models\AccessList;
11 10
 use Canvas\Models\Users;
11
+use Phalcon\Di;
12 12
 
13 13
 /**
14 14
  * Class UserMapper.
Please login to merge, or discard this patch.
src/Models/AccessList.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,7 @@
 block discarded – undo
112 112
      * @param Roles $role
113 113
      * @param string $resourceName
114 114
      * @param string $accessName
115
-     * @return integer
115
+     * @return AccessList
116 116
      */
117 117
     public static function getBy(Roles $role, string $resourceName, string $accessName) : AccessList
118 118
     {
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,8 +4,8 @@
 block discarded – undo
4 4
 
5 5
 namespace Canvas\Models;
6 6
 
7
-use Phalcon\Di;
8 7
 use Canvas\Exception\ModelException;
8
+use Phalcon\Di;
9 9
 
10 10
 class AccessList extends AbstractModel
11 11
 {
Please login to merge, or discard this patch.
src/Models/Apps.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@
 block discarded – undo
3 3
 
4 4
 namespace Canvas\Models;
5 5
 
6
-use Canvas\Traits\UsersAssociatedTrait;
7 6
 use Baka\Database\Contracts\HashTableTrait;
7
+use Canvas\Traits\UsersAssociatedTrait;
8 8
 
9 9
 class Apps extends \Baka\Database\Apps
10 10
 {
Please login to merge, or discard this patch.
src/Models/AppsPlans.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -160,7 +160,6 @@
 block discarded – undo
160 160
      * Get the value of the settins by it key
161 161
      *
162 162
      * @param string $key
163
-     * @param string $value
164 163
      */
165 164
     public function get(string $key) : ?string
166 165
     {
Please login to merge, or discard this patch.
src/Models/Companies.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -518,7 +518,7 @@
 block discarded – undo
518 518
     /**
519 519
      * Overwrite the relationship.
520 520
      *
521
-     * @return void
521
+     * @return string|null
522 522
      */
523 523
     public function getLogo()
524 524
     {
Please login to merge, or discard this patch.
Unused Use Statements   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -3,18 +3,18 @@
 block discarded – undo
3 3
 
4 4
 namespace Canvas\Models;
5 5
 
6
-use Phalcon\Validation;
7
-use Phalcon\Validation\Validator\PresenceOf;
8
-use Canvas\Exception\ServerErrorHttpException;
9
-use Exception;
10
-use Carbon\Carbon;
11
-use Baka\Database\Contracts\HashTableTrait;
12
-use Baka\Blameable\BlameableTrait;
13
-use Canvas\Traits\UsersAssociatedTrait;
14
-use Canvas\Traits\FileSystemModelTrait;
15 6
 use Baka\Blameable\Blameable;
7
+use Baka\Blameable\BlameableTrait;
8
+use Baka\Database\Contracts\HashTableTrait;
9
+use Canvas\Exception\ServerErrorHttpException;
16 10
 use Canvas\Traits\EventManagerAwareTrait;
11
+use Canvas\Traits\FileSystemModelTrait;
12
+use Canvas\Traits\UsersAssociatedTrait;
13
+use Carbon\Carbon;
14
+use Exception;
17 15
 use Phalcon\Di;
16
+use Phalcon\Validation;
17
+use Phalcon\Validation\Validator\PresenceOf;
18 18
 
19 19
 /**
20 20
  * Class Companies.
Please login to merge, or discard this patch.