Completed
Push — master ( bcb82e...80085e )
by vijay
07:39
created
config/debugbar.php 1 patch
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
         'enabled'    => true,
31 31
         'driver'     => 'file', // redis, file, pdo, custom
32 32
         'path'       => storage_path('debugbar'), // For file driver
33
-        'connection' => null,   // Leave null for default connection (Redis/PDO)
33
+        'connection' => null, // Leave null for default connection (Redis/PDO)
34 34
         'provider'   => '', // Instance of StorageInterface for custom driver
35 35
     ],
36 36
 
@@ -83,26 +83,26 @@  discard block
 block discarded – undo
83 83
      */
84 84
 
85 85
     'collectors' => [
86
-        'phpinfo'         => true,  // Php version
87
-        'messages'        => true,  // Messages
88
-        'time'            => true,  // Time Datalogger
89
-        'memory'          => true,  // Memory usage
90
-        'exceptions'      => true,  // Exception displayer
91
-        'log'             => true,  // Logs from Monolog (merged in messages if enabled)
92
-        'db'              => true,  // Show database (PDO) queries and bindings
93
-        'views'           => true,  // Views with their data
94
-        'route'           => true,  // Current route information
86
+        'phpinfo'         => true, // Php version
87
+        'messages'        => true, // Messages
88
+        'time'            => true, // Time Datalogger
89
+        'memory'          => true, // Memory usage
90
+        'exceptions'      => true, // Exception displayer
91
+        'log'             => true, // Logs from Monolog (merged in messages if enabled)
92
+        'db'              => true, // Show database (PDO) queries and bindings
93
+        'views'           => true, // Views with their data
94
+        'route'           => true, // Current route information
95 95
         'laravel'         => false, // Laravel version and environment
96 96
         'events'          => false, // All events fired
97 97
         'default_request' => false, // Regular or special Symfony request logger
98
-        'symfony_request' => true,  // Only one can be enabled..
99
-        'mail'            => true,  // Catch mail messages
98
+        'symfony_request' => true, // Only one can be enabled..
99
+        'mail'            => true, // Catch mail messages
100 100
         'logs'            => false, // Add the latest log messages
101 101
         'files'           => false, // Show the included files
102 102
         'config'          => false, // Display config settings
103 103
         'auth'            => false, // Display Laravel authentication status
104 104
         'gate'            => false, // Display Laravel Gate checks
105
-        'session'         => true,  // Display session data
105
+        'session'         => true, // Display session data
106 106
     ],
107 107
 
108 108
     /*
@@ -116,26 +116,26 @@  discard block
 block discarded – undo
116 116
 
117 117
     'options' => [
118 118
         'auth' => [
119
-            'show_name' => false,   // Also show the users name/email in the debugbar
119
+            'show_name' => false, // Also show the users name/email in the debugbar
120 120
         ],
121 121
         'db' => [
122
-            'with_params'       => true,   // Render SQL with the parameters substituted
123
-            'timeline'          => false,  // Add the queries to the timeline
124
-            'backtrace'         => false,  // EXPERIMENTAL: Use a backtrace to find the origin of the query in your files.
125
-            'explain'           => [            // EXPERIMENTAL: Show EXPLAIN output on queries
122
+            'with_params'       => true, // Render SQL with the parameters substituted
123
+            'timeline'          => false, // Add the queries to the timeline
124
+            'backtrace'         => false, // EXPERIMENTAL: Use a backtrace to find the origin of the query in your files.
125
+            'explain'           => [// EXPERIMENTAL: Show EXPLAIN output on queries
126 126
                 'enabled' => false,
127 127
                 'types'   => ['SELECT'], // array('SELECT', 'INSERT', 'UPDATE', 'DELETE'); for MySQL 5.6.3+
128 128
             ],
129
-            'hints'             => true,    // Show hints for common mistakes
129
+            'hints'             => true, // Show hints for common mistakes
130 130
         ],
131 131
         'mail' => [
132 132
             'full_log' => false,
133 133
         ],
134 134
         'views' => [
135
-            'data' => false,    //Note: Can slow down the application, because the data can be quite large..
135
+            'data' => false, //Note: Can slow down the application, because the data can be quite large..
136 136
         ],
137 137
         'route' => [
138
-            'label' => true,  // show complete route on bar
138
+            'label' => true, // show complete route on bar
139 139
         ],
140 140
         'logs' => [
141 141
             'file' => null,
Please login to merge, or discard this patch.
config/jwt.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
           | Specify the provider that is used to authenticate users.
127 127
           |
128 128
          */
129
-        'auth' => function ($app) {
129
+        'auth' => function($app) {
130 130
             return new Tymon\JWTAuth\Providers\Auth\IlluminateAuthAdapter($app['auth']);
131 131
         },
132 132
         /*
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
           | Specify the provider that is used to store tokens in the blacklist
138 138
           |
139 139
          */
140
-        'storage' => function ($app) {
140
+        'storage' => function($app) {
141 141
             return new Tymon\JWTAuth\Providers\Storage\IlluminateCacheAdapter($app['cache']);
142 142
         },
143 143
     ],
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140450_create_help_topic_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('help_topic', function (Blueprint $table) {
15
+        Schema::create('help_topic', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('topic');
18 18
             $table->string('parent_topic');
Please login to merge, or discard this patch.
migrations/2016_02_16_140450_create_group_assign_department_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('group_assign_department', function (Blueprint $table) {
15
+        Schema::create('group_assign_department', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('group_id')->unsigned()->index('group_id');
18 18
             $table->integer('department_id')->unsigned()->index('department_id');
Please login to merge, or discard this patch.
database/migrations/2016_07_26_090201_create_faveo_queues_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('faveo_queues', function (Blueprint $table) {
15
+        Schema::create('faveo_queues', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('service_id');
18 18
             $table->string('key');
Please login to merge, or discard this patch.
migrations/2016_02_16_140454_add_foreign_keys_to_organization_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::table('organization', function (Blueprint $table) {
15
+        Schema::table('organization', function(Blueprint $table) {
16 16
             $table->foreign('head', 'organization_ibfk_1')->references('id')->on('users')->onUpdate('NO ACTION')->onDelete('NO ACTION');
17 17
         });
18 18
     }
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
      */
25 25
     public function down()
26 26
     {
27
-        Schema::table('organization', function (Blueprint $table) {
27
+        Schema::table('organization', function(Blueprint $table) {
28 28
             $table->dropForeign('organization_ibfk_1');
29 29
         });
30 30
     }
Please login to merge, or discard this patch.
database/migrations/2016_02_16_140450_create_kb_pages_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('kb_pages', function (Blueprint $table) {
15
+        Schema::create('kb_pages', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->boolean('status');
Please login to merge, or discard this patch.
database/migrations/2016_07_19_071910_create_field_values_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('field_values', function (Blueprint $table) {
15
+        Schema::create('field_values', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('field_id')->nullable()->unsigned();
18 18
             $table->foreign('field_id')->references('id')->on('custom_form_fields');
Please login to merge, or discard this patch.
migrations/2016_08_12_104410_create_user_additional_infos_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('user_additional_infos', function (Blueprint $table) {
15
+        Schema::create('user_additional_infos', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('owner');
18 18
             $table->string('service');
Please login to merge, or discard this patch.