Completed
Pull Request — master (#47)
by Şəhriyar
12:52
created
app/Console/Kernel.php 1 patch
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -5,25 +5,25 @@
 block discarded – undo
5 5
 
6 6
 class Kernel extends ConsoleKernel {
7 7
 
8
-	/**
9
-	 * The Artisan commands provided by your application.
10
-	 *
11
-	 * @var array
12
-	 */
13
-	protected $commands = [
14
-		'App\Console\Commands\Inspire',
15
-	];
8
+    /**
9
+     * The Artisan commands provided by your application.
10
+     *
11
+     * @var array
12
+     */
13
+    protected $commands = [
14
+        'App\Console\Commands\Inspire',
15
+    ];
16 16
 
17
-	/**
18
-	 * Define the application's command schedule.
19
-	 *
20
-	 * @param  \Illuminate\Console\Scheduling\Schedule  $schedule
21
-	 * @return void
22
-	 */
23
-	protected function schedule(Schedule $schedule)
24
-	{
25
-		$schedule->command('inspire')
26
-				 ->hourly();
27
-	}
17
+    /**
18
+     * Define the application's command schedule.
19
+     *
20
+     * @param  \Illuminate\Console\Scheduling\Schedule  $schedule
21
+     * @return void
22
+     */
23
+    protected function schedule(Schedule $schedule)
24
+    {
25
+        $schedule->command('inspire')
26
+                    ->hourly();
27
+    }
28 28
 
29 29
 }
Please login to merge, or discard this patch.
database/migrations/2014_10_12_000000_create_users_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('users', function (Blueprint $table) {
15
+        Schema::create('users', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name')->nullable();
18 18
             $table->string('email')->unique()->nullable(); // Unique constraints can be Nullable, its SQL-92 compatible
Please login to merge, or discard this patch.
database/migrations/2015_02_18_113206_create_nested_entities.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('nested_entities', function (Blueprint $table) {
15
+        Schema::create('nested_entities', function(Blueprint $table) {
16 16
             $table->engine = 'InnoDb';
17 17
 
18 18
             $table->mediumInteger('id', true, true);
Please login to merge, or discard this patch.
database/migrations/2015_12_06_115712_create_files_users_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('files_users', function (Blueprint $table) {
15
+        Schema::create('files_users', function(Blueprint $table) {
16 16
             $table->engine = 'InnoDb';
17 17
             $table->string('file_hash', 64);
18 18
             $table->unsignedInteger('user_id');
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
      */
34 34
     public function down()
35 35
     {
36
-        Schema::table('files_users', function (Blueprint $table) {
36
+        Schema::table('files_users', function(Blueprint $table) {
37 37
             $table->dropForeign('files_users_file_hash_foreign');
38 38
             $table->dropForeign('files_users_user_id_foreign');
39 39
         });
Please login to merge, or discard this patch.
database/migrations/2015_05_13_125906_create_users_oauth_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('users_oauth', function (Blueprint $table) {
15
+        Schema::create('users_oauth', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->unsignedInteger('user_id');
18 18
             $table->string('remote_provider', 32);
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      */
35 35
     public function down()
36 36
     {
37
-        Schema::table('users_oauth', function (Blueprint $table) {
37
+        Schema::table('users_oauth', function(Blueprint $table) {
38 38
             $table->dropForeign('users_oauth_user_id_foreign');
39 39
         });
40 40
         Schema::drop('users_oauth');
Please login to merge, or discard this patch.
bootstrap/app.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
 */
13 13
 
14 14
 $app = new Illuminate\Foundation\Application(
15
-    realpath(__DIR__ . '/../')
15
+    realpath(__DIR__.'/../')
16 16
 );
17 17
 
18 18
 /*
Please login to merge, or discard this patch.
bootstrap/autoload.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 | loading of any our classes "manually". Feels great to relax.
14 14
 |
15 15
 */
16
-require __DIR__ . '/../vendor/autoload.php';
16
+require __DIR__.'/../vendor/autoload.php';
17 17
 
18 18
 /*
19 19
 |--------------------------------------------------------------------------
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 | by a request. The Artisan "optimize" is used to create this file.
26 26
 |
27 27
 */
28
-$compiledPath = __DIR__ . '/cache/compiled.php';
28
+$compiledPath = __DIR__.'/cache/compiled.php';
29 29
 if (file_exists($compiledPath)) {
30 30
     require $compiledPath;
31 31
 }
Please login to merge, or discard this patch.
server.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@
 block discarded – undo
8 8
 // built-in PHP web server. This provides a convenient way to test a Laravel
9 9
 // application without having installed a "real" web server software here.
10 10
 
11
-if ($uri !== '/' && file_exists(__DIR__ . '/public' . $uri)) {
11
+if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
12 12
     return false;
13 13
 }
14
-require_once __DIR__ . '/public/index.php';
14
+require_once __DIR__.'/public/index.php';
Please login to merge, or discard this patch.
app/Listeners/Files/PersistUploadedFile.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,10 +46,10 @@
 block discarded – undo
46 46
         /** @var \App\Models\User $me */
47 47
         $me = app('sentinel')->getUser();
48 48
         $tag = $request->get('qqtag');
49
-        $tagLimit = config('filesystems.allowed_tags_and_limits.' . $tag);
49
+        $tagLimit = config('filesystems.allowed_tags_and_limits.'.$tag);
50 50
         if ($tagLimit > 0) {
51 51
             $allFilesWithSameTagBelongingToUser = $me->load([
52
-                'files' => function (BelongsToMany $query) use ($tag) {
52
+                'files' => function(BelongsToMany $query) use ($tag) {
53 53
                     $query->wherePivot('tag', '=', $tag);
54 54
                 }
55 55
             ])->files;
Please login to merge, or discard this patch.