Completed
Branch dev (38d68c)
by Pavel
10:56
created
app/dependencies.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -2,17 +2,14 @@
 block discarded – undo
2 2
 use Illuminate\Database\Capsule\Manager as Capsule;
3 3
 use Illuminate\Events\Dispatcher;
4 4
 use Illuminate\Container\Container;
5
-
6 5
 use Monolog\Logger;
7 6
 use Monolog\Processor\UidProcessor;
8 7
 use Monolog\Handler\StreamHandler;
9
-
10 8
 use Illuminate\Translation\FileLoader;
11 9
 use Illuminate\Filesystem\Filesystem;
12 10
 use Illuminate\Translation\Translator;
13 11
 use Illuminate\Validation\DatabasePresenceVerifier;
14 12
 use Illuminate\Validation\Factory;
15
-
16 13
 use App\Common\Acl;
17 14
 use App\Common\Renderer;
18 15
 use App\Common\MailRenderer;
Please login to merge, or discard this patch.
app/middleware.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,10 +2,8 @@
 block discarded – undo
2 2
 use \Slim\Http\Request;
3 3
 use \Slim\Http\Response;
4 4
 use App\Controller\TokenController as Token;
5
-
6 5
 use App\Common\Auth;
7 6
 use App\Common\JsonException;
8
-
9 7
 use App\Model\User;
10 8
 
11 9
 /*
Please login to merge, or discard this patch.
app/src/Controller/BaseController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use App\Model;
6 6
 use App\Common\JsonException;
7 7
 use App\Common\Auth;
8
-
9 8
 use App\Requests\IRequest;
10 9
 use \Neomerx\JsonApi\Encoder\Encoder;
11 10
 use \Neomerx\JsonApi\Encoder\EncoderOptions;
Please login to merge, or discard this patch.
app/src/Controller/CrudController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 use App\Common\Helper;
5 5
 use App\Common\JsonException;
6 6
 use App\Scopes\MaxPerPageScope;
7
-
8 7
 use Slim\Http\Request;
9 8
 use Slim\Http\Response;
10 9
 
Please login to merge, or discard this patch.
app/src/Controller/TokenController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -4,10 +4,8 @@
 block discarded – undo
4 4
 use App\Requests\GetTokenRequest;
5 5
 use Firebase\JWT\JWT;
6 6
 use App\Model\User;
7
-
8 7
 use Slim\Http\Request;
9 8
 use Slim\Http\Response;
10
-
11 9
 use App\Common\JsonException;
12 10
 
13 11
 final class TokenController extends BaseController
Please login to merge, or discard this patch.
app/src/Controller/UserController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,12 +3,10 @@
 block discarded – undo
3 3
 
4 4
 use App\Model\User;
5 5
 use App\Common\JsonException;
6
-
7 6
 use App\Requests\RequestResetPasswordRequest;
8 7
 use App\Requests\ResetPasswordRequest;
9 8
 use App\Requests\UserCreateRequest;
10 9
 use App\Requests\UserUpdateRequest;
11
-
12 10
 use Slim\Http\Request;
13 11
 use Slim\Http\Response;
14 12
 
Please login to merge, or discard this patch.
app/database/migrations/20160706233448_create_logs_table.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@  discard block
 block discarded – undo
3 3
 
4 4
 class CreateLogsTable{
5 5
     /**
6
-    * Do the migration
7
-    */
6
+     * Do the migration
7
+     */
8 8
     public function up()
9 9
     {
10 10
         Capsule::schema()->create('logs', function($table)
@@ -20,8 +20,8 @@  discard block
 block discarded – undo
20 20
     }
21 21
 
22 22
     /**
23
-    * Undo the migration
24
-    */
23
+     * Undo the migration
24
+     */
25 25
     public function down()
26 26
     {
27 27
         Capsule::schema()->drop('logs');
Please login to merge, or discard this patch.
app/database/migrations/20160706232835_create_rights_table.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@  discard block
 block discarded – undo
3 3
 
4 4
 class CreateRightsTable{
5 5
     /**
6
-    * Do the migration
7
-    */
6
+     * Do the migration
7
+     */
8 8
     public function up()
9 9
     {
10 10
         Capsule::schema()->create('rights', function($table)
@@ -21,8 +21,8 @@  discard block
 block discarded – undo
21 21
     }
22 22
 
23 23
     /**
24
-    * Undo the migration
25
-    */
24
+     * Undo the migration
25
+     */
26 26
     public function down()
27 27
     {
28 28
         Capsule::schema()->drop('rights');
Please login to merge, or discard this patch.
app/database/migrations/20160706231338_create_users_table.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -3,8 +3,8 @@  discard block
 block discarded – undo
3 3
 
4 4
 class CreateUsersTable{
5 5
     /**
6
-    * Do the migration
7
-    */
6
+     * Do the migration
7
+     */
8 8
     public function up()
9 9
     {
10 10
         Capsule::schema()->create('users', function($table)
@@ -26,8 +26,8 @@  discard block
 block discarded – undo
26 26
     }
27 27
 
28 28
     /**
29
-    * Undo the migration
30
-    */
29
+     * Undo the migration
30
+     */
31 31
     public function down()
32 32
     {
33 33
         Capsule::schema()->drop('users');
Please login to merge, or discard this patch.