Scrutinizer GitHub App not installed

We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.

Install GitHub App

Completed
Push — master ( a97747...2ecd68 )
by Cristian
14:38 queued 12:02
created
src/app/Http/Controllers/SettingCrudController.php 2 patches
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Backpack\CRUD\app\Http\Controllers\CrudController;
6 6
 // VALIDATION
7
-use Backpack\Settings\app\Http\Requests\SettingRequest as StoreRequest;
8 7
 use Backpack\Settings\app\Http\Requests\SettingRequest as UpdateRequest;
9 8
 
10 9
 class SettingCrudController extends CrudController
Please login to merge, or discard this patch.
Indentation   +46 added lines, -46 removed lines patch added patch discarded remove patch
@@ -9,56 +9,56 @@
 block discarded – undo
9 9
 
10 10
 class SettingCrudController extends CrudController
11 11
 {
12
-    public function __construct()
13
-    {
14
-        parent::__construct();
12
+	public function __construct()
13
+	{
14
+		parent::__construct();
15 15
 
16
-        $this->crud->setModel("Backpack\Settings\app\Models\Setting");
17
-        $this->crud->setEntityNameStrings('setting', 'settings');
18
-        $this->crud->setRoute('admin/setting');
19
-        $this->crud->denyAccess(['create', 'delete']);
20
-        $this->crud->setColumns(['name', 'value', 'description']);
21
-        $this->crud->addField([
22
-                                'name'     => 'name',
23
-                                'label'    => 'Name',
24
-                                'type'     => 'text',
25
-                                'disabled' => 'disabled',
26
-                            ]);
27
-        $this->crud->addField([
28
-                                'name'  => 'value',
29
-                                'label' => 'Value',
30
-                                'type'  => 'text',
31
-                            ]);
32
-    }
16
+		$this->crud->setModel("Backpack\Settings\app\Models\Setting");
17
+		$this->crud->setEntityNameStrings('setting', 'settings');
18
+		$this->crud->setRoute('admin/setting');
19
+		$this->crud->denyAccess(['create', 'delete']);
20
+		$this->crud->setColumns(['name', 'value', 'description']);
21
+		$this->crud->addField([
22
+								'name'     => 'name',
23
+								'label'    => 'Name',
24
+								'type'     => 'text',
25
+								'disabled' => 'disabled',
26
+							]);
27
+		$this->crud->addField([
28
+								'name'  => 'value',
29
+								'label' => 'Value',
30
+								'type'  => 'text',
31
+							]);
32
+	}
33 33
 
34
-    /**
35
-     * Display all rows in the database for this entity.
36
-     * This overwrites the default CrudController behaviour:
37
-     * - instead of showing all entries, only show the "active" ones.
38
-     *
39
-     * @return Response
40
-     */
41
-    public function index()
42
-    {
43
-        // if view_table_permission is false, abort
44
-        $this->crud->hasAccessOrFail('list');
45
-        $this->crud->addClause('where', 'active', 1); // <---- this is where it's different from CrudController::index()
34
+	/**
35
+	 * Display all rows in the database for this entity.
36
+	 * This overwrites the default CrudController behaviour:
37
+	 * - instead of showing all entries, only show the "active" ones.
38
+	 *
39
+	 * @return Response
40
+	 */
41
+	public function index()
42
+	{
43
+		// if view_table_permission is false, abort
44
+		$this->crud->hasAccessOrFail('list');
45
+		$this->crud->addClause('where', 'active', 1); // <---- this is where it's different from CrudController::index()
46 46
 
47
-        $this->data['entries'] = $this->crud->getEntries();
48
-        $this->data['crud'] = $this->crud;
49
-        $this->data['title'] = ucfirst($this->crud->entity_name_plural);
47
+		$this->data['entries'] = $this->crud->getEntries();
48
+		$this->data['crud'] = $this->crud;
49
+		$this->data['title'] = ucfirst($this->crud->entity_name_plural);
50 50
 
51
-        // load the view from /resources/views/vendor/backpack/crud/ if it exists, otherwise load the one in the package
52
-        return view('crud::list', $this->data);
53
-    }
51
+		// load the view from /resources/views/vendor/backpack/crud/ if it exists, otherwise load the one in the package
52
+		return view('crud::list', $this->data);
53
+	}
54 54
 
55
-    public function store(StoreRequest $request)
56
-    {
57
-        return parent::storeCrud();
58
-    }
55
+	public function store(StoreRequest $request)
56
+	{
57
+		return parent::storeCrud();
58
+	}
59 59
 
60
-    public function update(UpdateRequest $request)
61
-    {
62
-        return parent::updateCrud();
63
-    }
60
+	public function update(UpdateRequest $request)
61
+	{
62
+		return parent::updateCrud();
63
+	}
64 64
 }
Please login to merge, or discard this patch.
src/SettingsServiceProvider.php 2 patches
Indentation   +60 added lines, -60 removed lines patch added patch discarded remove patch
@@ -10,71 +10,71 @@
 block discarded – undo
10 10
 
11 11
 class SettingsServiceProvider extends ServiceProvider
12 12
 {
13
-    /**
14
-     * Indicates if loading of the provider is deferred.
15
-     *
16
-     * @var bool
17
-     */
18
-    protected $defer = false;
13
+	/**
14
+	 * Indicates if loading of the provider is deferred.
15
+	 *
16
+	 * @var bool
17
+	 */
18
+	protected $defer = false;
19 19
 
20
-    /**
21
-     * Perform post-registration booting of services.
22
-     *
23
-     * @return void
24
-     */
25
-    public function boot()
26
-    {
27
-        // only use the Settings package if the Settings table is present in the database
28
-        if (count(DB::select("SHOW TABLES LIKE 'settings'"))) {
29
-            // get all settings from the database
30
-            $settings = Setting::all();
20
+	/**
21
+	 * Perform post-registration booting of services.
22
+	 *
23
+	 * @return void
24
+	 */
25
+	public function boot()
26
+	{
27
+		// only use the Settings package if the Settings table is present in the database
28
+		if (count(DB::select("SHOW TABLES LIKE 'settings'"))) {
29
+			// get all settings from the database
30
+			$settings = Setting::all();
31 31
 
32
-            // bind all settings to the Laravel config, so you can call them like
33
-            // Config::get('settings.contact_email')
34
-            foreach ($settings as $key => $setting) {
35
-                Config::set('settings.'.$setting->key, $setting->value);
36
-            }
37
-        }
32
+			// bind all settings to the Laravel config, so you can call them like
33
+			// Config::get('settings.contact_email')
34
+			foreach ($settings as $key => $setting) {
35
+				Config::set('settings.'.$setting->key, $setting->value);
36
+			}
37
+		}
38 38
 
39
-        // publish the migrations and seeds
40
-        $this->publishes([__DIR__.'/database/migrations/' => database_path('migrations')], 'migrations');
41
-        $this->publishes([__DIR__.'/database/seeds/' => database_path('seeds')], 'seeds');
42
-    }
39
+		// publish the migrations and seeds
40
+		$this->publishes([__DIR__.'/database/migrations/' => database_path('migrations')], 'migrations');
41
+		$this->publishes([__DIR__.'/database/seeds/' => database_path('seeds')], 'seeds');
42
+	}
43 43
 
44
-    /**
45
-     * Define the routes for the application.
46
-     *
47
-     * @param \Illuminate\Routing\Router $router
48
-     *
49
-     * @return void
50
-     */
51
-    public function setupRoutes(Router $router)
52
-    {
53
-        $router->group(['namespace' => 'Backpack\Settings\app\Http\Controllers'], function ($router) {
54
-            require __DIR__.'/app/Http/routes.php';
55
-        });
56
-    }
44
+	/**
45
+	 * Define the routes for the application.
46
+	 *
47
+	 * @param \Illuminate\Routing\Router $router
48
+	 *
49
+	 * @return void
50
+	 */
51
+	public function setupRoutes(Router $router)
52
+	{
53
+		$router->group(['namespace' => 'Backpack\Settings\app\Http\Controllers'], function ($router) {
54
+			require __DIR__.'/app/Http/routes.php';
55
+		});
56
+	}
57 57
 
58
-    /**
59
-     * Register any package services.
60
-     *
61
-     * @return void
62
-     */
63
-    public function register()
64
-    {
65
-        $this->registerSettings();
66
-        $this->setupRoutes($this->app->router);
58
+	/**
59
+	 * Register any package services.
60
+	 *
61
+	 * @return void
62
+	 */
63
+	public function register()
64
+	{
65
+		$this->registerSettings();
66
+		$this->setupRoutes($this->app->router);
67 67
 
68
-        // use this if your package has a config file
69
-        // config([
70
-        //         'config/Settings.php',
71
-        // ]);
72
-    }
68
+		// use this if your package has a config file
69
+		// config([
70
+		//         'config/Settings.php',
71
+		// ]);
72
+	}
73 73
 
74
-    private function registerSettings()
75
-    {
76
-        $this->app->bind('settings', function ($app) {
77
-            return new Settings($app);
78
-        });
79
-    }
74
+	private function registerSettings()
75
+	{
76
+		$this->app->bind('settings', function ($app) {
77
+			return new Settings($app);
78
+		});
79
+	}
80 80
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
      */
51 51
     public function setupRoutes(Router $router)
52 52
     {
53
-        $router->group(['namespace' => 'Backpack\Settings\app\Http\Controllers'], function ($router) {
53
+        $router->group(['namespace' => 'Backpack\Settings\app\Http\Controllers'], function($router) {
54 54
             require __DIR__.'/app/Http/routes.php';
55 55
         });
56 56
     }
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
 
74 74
     private function registerSettings()
75 75
     {
76
-        $this->app->bind('settings', function ($app) {
76
+        $this->app->bind('settings', function($app) {
77 77
             return new Settings($app);
78 78
         });
79 79
     }
Please login to merge, or discard this patch.
src/database/migrations/2015_08_04_131614_create_settings_table.php 1 patch
Indentation   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -5,32 +5,32 @@
 block discarded – undo
5 5
 
6 6
 class CreateSettingsTable extends Migration
7 7
 {
8
-    /**
9
-     * Run the migrations.
10
-     *
11
-     * @return void
12
-     */
13
-    public function up()
14
-    {
15
-        Schema::create('settings', function (Blueprint $table) {
16
-            $table->increments('id');
17
-            $table->string('key');
18
-            $table->string('name');
19
-            $table->string('description')->nullable();
20
-            $table->string('value')->nullable();
21
-            $table->text('field');
22
-            $table->tinyInteger('active');
23
-            $table->timestamps();
24
-        });
25
-    }
8
+	/**
9
+	 * Run the migrations.
10
+	 *
11
+	 * @return void
12
+	 */
13
+	public function up()
14
+	{
15
+		Schema::create('settings', function (Blueprint $table) {
16
+			$table->increments('id');
17
+			$table->string('key');
18
+			$table->string('name');
19
+			$table->string('description')->nullable();
20
+			$table->string('value')->nullable();
21
+			$table->text('field');
22
+			$table->tinyInteger('active');
23
+			$table->timestamps();
24
+		});
25
+	}
26 26
 
27
-    /**
28
-     * Reverse the migrations.
29
-     *
30
-     * @return void
31
-     */
32
-    public function down()
33
-    {
34
-        Schema::drop('settings');
35
-    }
27
+	/**
28
+	 * Reverse the migrations.
29
+	 *
30
+	 * @return void
31
+	 */
32
+	public function down()
33
+	{
34
+		Schema::drop('settings');
35
+	}
36 36
 }
Please login to merge, or discard this patch.
src/database/seeds/SettingsTableSeeder.php 1 patch
Indentation   +46 added lines, -46 removed lines patch added patch discarded remove patch
@@ -7,50 +7,50 @@
 block discarded – undo
7 7
 
8 8
 class SettingsTableSeeder extends Seeder
9 9
 {
10
-    /**
11
-     * Run the database seeds.
12
-     *
13
-     * @return void
14
-     */
15
-    public function run()
16
-    {
17
-        DB::table('settings')->insert([
18
-            'key'           => 'contact_email',
19
-            'name'          => 'Contact form email address',
20
-            'description'   => 'The email address that all emails from the contact form will go to.',
21
-            'value'         => '[email protected]',
22
-            'field'         => '',
23
-            'active'        => 1,
24
-        ]);
25
-
26
-        DB::table('settings')->insert([
27
-            'key'           => 'contact_cc',
28
-            'name'          => 'Contact form CC field',
29
-            'description'   => 'Email adresses separated by comma, to be included as CC in the email sent by the contact form.',
30
-            'value'         => '',
31
-            'field'         => '',
32
-            'active'        => 1,
33
-
34
-        ]);
35
-
36
-        DB::table('settings')->insert([
37
-            'key'           => 'contact_bcc',
38
-            'name'          => 'Contact form BCC field',
39
-            'description'   => 'Email adresses separated by comma, to be included as BCC in the email sent by the contact form.',
40
-            'value'         => '',
41
-            'field'         => '{\"name\":\"value\",\"label\":\"Value\",\"type\":\"email\"}',
42
-            'active'        => 1,
43
-
44
-        ]);
45
-
46
-        DB::table('settings')->insert([
47
-            'key'           => 'motto',
48
-            'name'          => 'Motto',
49
-            'description'   => 'Website motto',
50
-            'value'         => 'this is the value',
51
-            'field'         => '{\"name\":\"value\",\"label\":\"Value\", \"title\":\"Motto value\" ,\"type\":\"textarea\"}',
52
-            'active'        => 1,
53
-
54
-        ]);
55
-    }
10
+	/**
11
+	 * Run the database seeds.
12
+	 *
13
+	 * @return void
14
+	 */
15
+	public function run()
16
+	{
17
+		DB::table('settings')->insert([
18
+			'key'           => 'contact_email',
19
+			'name'          => 'Contact form email address',
20
+			'description'   => 'The email address that all emails from the contact form will go to.',
21
+			'value'         => '[email protected]',
22
+			'field'         => '',
23
+			'active'        => 1,
24
+		]);
25
+
26
+		DB::table('settings')->insert([
27
+			'key'           => 'contact_cc',
28
+			'name'          => 'Contact form CC field',
29
+			'description'   => 'Email adresses separated by comma, to be included as CC in the email sent by the contact form.',
30
+			'value'         => '',
31
+			'field'         => '',
32
+			'active'        => 1,
33
+
34
+		]);
35
+
36
+		DB::table('settings')->insert([
37
+			'key'           => 'contact_bcc',
38
+			'name'          => 'Contact form BCC field',
39
+			'description'   => 'Email adresses separated by comma, to be included as BCC in the email sent by the contact form.',
40
+			'value'         => '',
41
+			'field'         => '{\"name\":\"value\",\"label\":\"Value\",\"type\":\"email\"}',
42
+			'active'        => 1,
43
+
44
+		]);
45
+
46
+		DB::table('settings')->insert([
47
+			'key'           => 'motto',
48
+			'name'          => 'Motto',
49
+			'description'   => 'Website motto',
50
+			'value'         => 'this is the value',
51
+			'field'         => '{\"name\":\"value\",\"label\":\"Value\", \"title\":\"Motto value\" ,\"type\":\"textarea\"}',
52
+			'active'        => 1,
53
+
54
+		]);
55
+	}
56 56
 }
Please login to merge, or discard this patch.
src/app/Http/Requests/SettingRequest.php 1 patch
Indentation   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -6,28 +6,28 @@
 block discarded – undo
6 6
 
7 7
 class SettingRequest extends Request
8 8
 {
9
-    /**
10
-     * Determine if the user is authorized to make this request.
11
-     *
12
-     * @return bool
13
-     */
14
-    public function authorize()
15
-    {
16
-        // only allow updates if the user is logged in
17
-        return \Auth::check();
18
-    }
9
+	/**
10
+	 * Determine if the user is authorized to make this request.
11
+	 *
12
+	 * @return bool
13
+	 */
14
+	public function authorize()
15
+	{
16
+		// only allow updates if the user is logged in
17
+		return \Auth::check();
18
+	}
19 19
 
20
-    /**
21
-     * Get the validation rules that apply to the request.
22
-     *
23
-     * @return array
24
-     */
25
-    public function rules()
26
-    {
27
-        return [
28
-            // 'key' => 'required|min:3|max:255',
29
-            // 'name' => 'required|min:3|max:255',
30
-            // 'field' => 'required'
31
-        ];
32
-    }
20
+	/**
21
+	 * Get the validation rules that apply to the request.
22
+	 *
23
+	 * @return array
24
+	 */
25
+	public function rules()
26
+	{
27
+		return [
28
+			// 'key' => 'required|min:3|max:255',
29
+			// 'name' => 'required|min:3|max:255',
30
+			// 'field' => 'required'
31
+		];
32
+	}
33 33
 }
Please login to merge, or discard this patch.
src/app/Http/routes.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
 // Admin Interface Routes
10 10
 Route::group(['prefix' => 'admin', 'middleware' => ['web', 'auth']], function () {
11 11
 
12
-    // Settings
13
-    Route::resource('setting', 'SettingCrudController');
12
+	// Settings
13
+	Route::resource('setting', 'SettingCrudController');
14 14
 
15 15
 });
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
7 7
 */
8 8
 
9 9
 // Admin Interface Routes
10
-Route::group(['prefix' => 'admin', 'middleware' => ['web', 'auth']], function () {
10
+Route::group(['prefix' => 'admin', 'middleware' => ['web', 'auth']], function() {
11 11
 
12 12
     // Settings
13 13
     Route::resource('setting', 'SettingCrudController');
Please login to merge, or discard this patch.
src/app/Models/Setting.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,8 +7,8 @@
 block discarded – undo
7 7
 
8 8
 class Setting extends Model
9 9
 {
10
-    use CrudTrait;
10
+	use CrudTrait;
11 11
 
12
-    protected $table = 'settings';
13
-    protected $fillable = ['value'];
12
+	protected $table = 'settings';
13
+	protected $fillable = ['value'];
14 14
 }
Please login to merge, or discard this patch.