Passed
Push — master ( eea47b...475860 )
by CodexShaper
05:12
created
routes/web.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@
 block discarded – undo
1 1
 <?php
2
-Route::group(['prefix' => 'database', 'namespace' => config('dbm.controller_namespace')], function () {
2
+Route::group(['prefix' => 'database', 'namespace' => config('dbm.controller_namespace')], function() {
3 3
     //Database Table
4 4
     Route::get('/', 'DatabaseController@index');
5 5
     Route::get('table/builder/{name}', 'DatabaseController@index');
Please login to merge, or discard this patch.
routes/apiBackup.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-Route::group(['prefix' => config('dbm.prefix'), 'namespace' => config('dbm.controller_namespace')], function () {
3
+Route::group(['prefix' => config('dbm.prefix'), 'namespace' => config('dbm.controller_namespace')], function() {
4 4
 
5 5
     /* Helpers Route*/
6 6
     Route::get('assets', 'ManagerController@assets')->name('dbm.asset');
7 7
 
8 8
     // Database
9
-    Route::group(['prefix' => 'database', 'middleware' => 'auth:api'], function () {
9
+    Route::group(['prefix' => 'database', 'middleware' => 'auth:api'], function() {
10 10
 
11 11
         // Route::get('/', 'DatabaseController@index')->name('dbm.table');
12 12
         Route::get('/tables', 'DatabaseController@all');
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
      * U = Update/Edit
44 44
      * D = Delete
45 45
      */
46
-    Route::group(['prefix' => 'crud', 'middleware' => 'auth:api'], function () {
46
+    Route::group(['prefix' => 'crud', 'middleware' => 'auth:api'], function() {
47 47
 
48 48
         // Route::get('/', 'CrudController@index')->name('dbm.crud');
49 49
         Route::get('/tables', 'CrudController@all');
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
 
61 61
     });
62 62
 
63
-    Route::group(['prefix' => 'table', 'middleware' => 'auth:api'], function () {
63
+    Route::group(['prefix' => 'table', 'middleware' => 'auth:api'], function() {
64 64
 
65 65
         // Builder
66 66
         // Route::get('/builder/{name}', 'DatabaseController@showTableBuilder');
Please login to merge, or discard this patch.
src/Database/Schema/ForeignKey.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -53,9 +53,9 @@
 block discarded – undo
53 53
 
54 54
     public static function createName(array $columns, $type, $table = null)
55 55
     {
56
-        $table = isset($table) ? trim($table) . '_' : '';
56
+        $table = isset($table) ? trim($table).'_' : '';
57 57
         $type  = trim($type);
58
-        $name  = strtolower($table . implode('_', $columns) . '_' . $type);
58
+        $name  = strtolower($table.implode('_', $columns).'_'.$type);
59 59
 
60 60
         return str_replace(['-', '.'], '_', $name);
61 61
     }
Please login to merge, or discard this patch.
src/Commands/DatabaseBackup.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -44,8 +44,8 @@  discard block
 block discarded – undo
44 44
      */
45 45
     protected function findComposer()
46 46
     {
47
-        if (file_exists(getcwd() . '/composer.phar')) {
48
-            return '"' . PHP_BINARY . '" ' . getcwd() . '/composer.phar';
47
+        if (file_exists(getcwd().'/composer.phar')) {
48
+            return '"'.PHP_BINARY.'" '.getcwd().'/composer.phar';
49 49
         }
50 50
         return 'composer';
51 51
     }
@@ -54,14 +54,14 @@  discard block
 block discarded – undo
54 54
     {
55 55
 
56 56
         $prefix = (strlen($table) > 0)
57
-        ? 'table_' . strtolower(str_replace('-', '_', $table)) . "_"
58
-        : 'database_' . strtolower(str_replace('-', '_', $database)) . "_";
57
+        ? 'table_'.strtolower(str_replace('-', '_', $table))."_"
58
+        : 'database_'.strtolower(str_replace('-', '_', $database))."_";
59 59
 
60 60
         $extension = Driver::isMongoDB() ? '' : '.sql';
61
-        $fileName  = $prefix . 'backup_' . date('G_a_m_d_y_h_i_s') . $extension;
61
+        $fileName  = $prefix.'backup_'.date('G_a_m_d_y_h_i_s').$extension;
62 62
 
63 63
         if (Driver::isSqlite()) {
64
-            $fileName = 'backup_' . date('G_a_m_d_y_h_i_s') . $extension;
64
+            $fileName = 'backup_'.date('G_a_m_d_y_h_i_s').$extension;
65 65
         }
66 66
 
67 67
         return $fileName;
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
 
83 83
         // $hostname = config('database.connections.' . $driver . '.host', '127.0.0.1');
84 84
         // $port     = config('database.connections.' . $driver . '.port', '3306');
85
-        $database = config('database.connections.' . $driver . '.database', 'dbm');
85
+        $database = config('database.connections.'.$driver.'.database', 'dbm');
86 86
         $table    = ($this->option('table') != null) ? $this->option('table') : '';
87 87
         // $username = config('database.connections.' . $driver . '.username', 'root');
88 88
         // $password = config('database.connections.' . $driver . '.password', '');
@@ -92,8 +92,8 @@  discard block
 block discarded – undo
92 92
             $directory = (config('dbm.backup.dir', 'backups') != '')
93 93
             ? DIRECTORY_SEPARATOR . config('dbm.backup.dir', 'backups')
94 94
             : '';
95
-            $directoryPath = DBM::getPathPrefix() . $directory . DIRECTORY_SEPARATOR . $driver;
96
-            $filePath      = $directoryPath . DIRECTORY_SEPARATOR . $this->getFileName($table, $database);
95
+            $directoryPath = DBM::getPathPrefix().$directory.DIRECTORY_SEPARATOR.$driver;
96
+            $filePath      = $directoryPath.DIRECTORY_SEPARATOR.$this->getFileName($table, $database);
97 97
 
98 98
             if (!File::isDirectory($directoryPath)) {
99 99
 
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
             $compressBinaryPath = config('dbm.backup.compress_binary_path', "");
107 107
             $compressCommand    = config('dbm.backup.compress_command', "gzip");
108 108
             $compressExtension  = config('dbm.backup.compress_extension', ".gz");
109
-            $dumpBinaryPath     = config('dbm.backup.' . $driver . '.binary_path', '');
109
+            $dumpBinaryPath     = config('dbm.backup.'.$driver.'.binary_path', '');
110 110
 
111 111
             switch ($driver) {
112 112
                 case 'mysql':
Please login to merge, or discard this patch.
src/Http/Controllers/CrudController.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 
94 94
                         $modelName = ucfirst(Str::singular($object->name));
95 95
 
96
-                        $model         = $namespace . '\\' . $modelName;
96
+                        $model         = $namespace.'\\'.$modelName;
97 97
                         $object->model = $model;
98 98
                     }
99 99
 
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
                     $table = Table::getTable($tableName);
108 108
 
109 109
                     $modelName = ucfirst(Str::singular($table['name']));
110
-                    $model     = $namespace . '\\' . $modelName;
110
+                    $model     = $namespace.'\\'.$modelName;
111 111
 
112 112
                     $object               = new \stdClass;
113 113
                     $object->name         = $table['name'];
@@ -205,7 +205,7 @@  discard block
 block discarded – undo
205 205
                     } else if ($table['makeModel'] == false && !class_exists($table['model'])) {
206 206
                         return response()->json([
207 207
                             'success' => false,
208
-                            'errors'  => ["Create model '" . $table['model'] . "' first or checked create model option"],
208
+                            'errors'  => ["Create model '".$table['model']."' first or checked create model option"],
209 209
                         ], 400);
210 210
                     }
211 211
 
@@ -271,7 +271,7 @@  discard block
 block discarded – undo
271 271
                     if ($table['makeModel'] == true) {
272 272
                         \DBM::makeModel($table['model'], $table['name']);
273 273
                     } else if ($table['makeModel'] == false && !class_exists($table['model'])) {
274
-                        return $this->generateError(["Create mode '" . $table['model'] . "' first."]);
274
+                        return $this->generateError(["Create mode '".$table['model']."' first."]);
275 275
                     }
276 276
 
277 277
                     if (!class_exists($table['controller'])) {
@@ -369,7 +369,7 @@  discard block
 block discarded – undo
369 369
             $prefix = (Driver::isMongoDB()) ? "_" : "";
370 370
 
371 371
             foreach ($fields as $fld) {
372
-                if ($fld->id == $field->{$prefix . "id"}) {
372
+                if ($fld->id == $field->{$prefix."id"}) {
373 373
 
374 374
                     $relationship = $fld->settings;
375 375
                     $localTable   = $relationship['localTable'];
@@ -403,17 +403,17 @@  discard block
 block discarded – undo
403 403
 
404 404
             if (!class_exists($relationship['localModel'])) {
405 405
 
406
-                $error = $relationship['localModel'] . " Model not found. Please create the " . $relationship['localModel'] . " model first";
406
+                $error = $relationship['localModel']." Model not found. Please create the ".$relationship['localModel']." model first";
407 407
                 return $this->generateError([$error]);
408 408
             }
409 409
 
410 410
             if (!class_exists($relationship['foreignModel'])) {
411 411
 
412
-                $error = $relationship['foreignModel'] . " Model not found. Please create the " . $relationship['foreignModel'] . " model first";
412
+                $error = $relationship['foreignModel']." Model not found. Please create the ".$relationship['foreignModel']." model first";
413 413
                 return $this->generateError([$error]);
414 414
             }
415 415
 
416
-            $fieldName = strtolower(Str::singular($relationship['localTable']) . '_' . $relationship['type'] . '_' . Str::singular($relationship['foreignTable']) . '_relationship');
416
+            $fieldName = strtolower(Str::singular($relationship['localTable']).'_'.$relationship['type'].'_'.Str::singular($relationship['foreignTable']).'_relationship');
417 417
             $settings  = [
418 418
                 'relationType'    => $relationship['type'],
419 419
                 'localModel'      => $relationship['localModel'],
Please login to merge, or discard this patch.