Failed Conditions
Pull Request — master (#246)
by Maximo
02:52
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/Middleware/AuthenticationMiddleware.php 1 patch
Unused Use Statements   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -4,12 +4,12 @@
 block discarded – undo
4 4
 
5 5
 namespace Canvas\Middleware;
6 6
 
7
-use Phalcon\Mvc\Micro;
8
-use Canvas\Exception\PermissionException;
9 7
 use Baka\Auth\Models\Sessions;
10
-use Canvas\Models\Users;
11
-use Canvas\Exception\UnauthorizedHttpException;
12 8
 use Canvas\Constants\Flags;
9
+use Canvas\Exception\PermissionException;
10
+use Canvas\Exception\UnauthorizedHttpException;
11
+use Canvas\Models\Users;
12
+use Phalcon\Mvc\Micro;
13 13
 
14 14
 /**
15 15
  * Class AuthenticationMiddleware.
Please login to merge, or discard this patch.
src/Middleware/TokenBase.php 1 patch
Unused Use Statements   +5 added lines, -6 removed lines patch added patch discarded remove patch
@@ -4,15 +4,14 @@
 block discarded – undo
4 4
 
5 5
 namespace Canvas\Middleware;
6 6
 
7
+use Canvas\Exception\SubscriptionPlanFailureException;
7 8
 use Canvas\Http\Request;
8
-use Canvas\Traits\TokenTrait;
9
+use Canvas\Models\Subscription;
9 10
 use Canvas\Traits\SubscriptionPlanLimitTrait;
10
-use Phalcon\Mvc\Micro\MiddlewareInterface;
11
-use Canvas\Exception\UnauthorizedHttpException;
12
-use Canvas\Exception\SubscriptionPlanFailureException;
13
-use Phalcon\Mvc\Micro;
11
+use Canvas\Traits\TokenTrait;
14 12
 use Phalcon\Http\RequestInterface;
15
-use Canvas\Models\Subscription;
13
+use Phalcon\Mvc\Micro;
14
+use Phalcon\Mvc\Micro\MiddlewareInterface;
16 15
 
17 16
 /**
18 17
  * Class AuthenticationMiddleware.
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.