@@ -282,7 +282,7 @@ discard block |
||
282 | 282 | 'name' => $column['name']])->first()) { |
283 | 283 | return response()->json([ |
284 | 284 | 'success' => false, |
285 | - 'errors' => ["Field name must be unique. " . $column['name'] . " are duplicate"], |
|
285 | + 'errors' => ["Field name must be unique. ".$column['name']." are duplicate"], |
|
286 | 286 | ], 400); |
287 | 287 | } |
288 | 288 | |
@@ -540,7 +540,7 @@ discard block |
||
540 | 540 | if (DBM::Template()->where('name', $field['name'])->first()) { |
541 | 541 | return response()->json([ |
542 | 542 | 'success' => false, |
543 | - 'errors' => [" The template name must be unique. " . $field['name'] . " already exist."], |
|
543 | + 'errors' => [" The template name must be unique. ".$field['name']." already exist."], |
|
544 | 544 | ], 400); |
545 | 545 | } |
546 | 546 | |
@@ -577,7 +577,7 @@ discard block |
||
577 | 577 | } |
578 | 578 | return response()->json([ |
579 | 579 | 'success' => false, |
580 | - 'errors' => ['The template '+$request->name . " not found"], |
|
580 | + 'errors' => ['The template '+$request->name." not found"], |
|
581 | 581 | ], 400); |
582 | 582 | } |
583 | 583 |
@@ -44,8 +44,8 @@ discard block |
||
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 |
||
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; |
@@ -74,7 +74,7 @@ discard block |
||
74 | 74 | $compressBinaryPath = config('dbm.backup.compress_binary_path', ""); |
75 | 75 | $compressCommand = config('dbm.backup.compress_command', "gzip"); |
76 | 76 | $compressExtension = config('dbm.backup.compress_extension', ".gz"); |
77 | - $dumpBinaryPath = config('dbm.backup.' . $data['driver'] . '.binary_path', ''); |
|
77 | + $dumpBinaryPath = config('dbm.backup.'.$data['driver'].'.binary_path', ''); |
|
78 | 78 | |
79 | 79 | switch ($data['driver']) { |
80 | 80 | case 'mysql': |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | |
121 | 121 | // $hostname = config('database.connections.' . $driver . '.host', '127.0.0.1'); |
122 | 122 | // $port = config('database.connections.' . $driver . '.port', '3306'); |
123 | - $database = config('database.connections.' . $driver . '.database', 'dbm'); |
|
123 | + $database = config('database.connections.'.$driver.'.database', 'dbm'); |
|
124 | 124 | $table = ($this->option('table') != null) ? $this->option('table') : ''; |
125 | 125 | // $username = config('database.connections.' . $driver . '.username', 'root'); |
126 | 126 | // $password = config('database.connections.' . $driver . '.password', ''); |
@@ -130,8 +130,8 @@ discard block |
||
130 | 130 | $directory = (config('dbm.backup.dir', 'backups') != '') |
131 | 131 | ? DIRECTORY_SEPARATOR . config('dbm.backup.dir', 'backups') |
132 | 132 | : ''; |
133 | - $directoryPath = DBM::getPathPrefix() . $directory . DIRECTORY_SEPARATOR . $driver; |
|
134 | - $filePath = $directoryPath . DIRECTORY_SEPARATOR . $this->getFileName($table, $database); |
|
133 | + $directoryPath = DBM::getPathPrefix().$directory.DIRECTORY_SEPARATOR.$driver; |
|
134 | + $filePath = $directoryPath.DIRECTORY_SEPARATOR.$this->getFileName($table, $database); |
|
135 | 135 | |
136 | 136 | if (!File::isDirectory($directoryPath)) { |
137 | 137 |
@@ -171,7 +171,7 @@ |
||
171 | 171 | $columns = $request->fields; |
172 | 172 | $permission = $request->isCrudExists ? 'update' : 'create'; |
173 | 173 | |
174 | - if (($response = DBM::authorize('crud.' . $permission)) !== true) { |
|
174 | + if (($response = DBM::authorize('crud.'.$permission)) !== true) { |
|
175 | 175 | return $response; |
176 | 176 | } |
177 | 177 |
@@ -24,12 +24,12 @@ discard block |
||
24 | 24 | { |
25 | 25 | public function webRoutes() |
26 | 26 | { |
27 | - require __DIR__ . '/../routes/web.php'; |
|
27 | + require __DIR__.'/../routes/web.php'; |
|
28 | 28 | } |
29 | 29 | |
30 | 30 | public function apiRoutes() |
31 | 31 | { |
32 | - require __DIR__ . '/../routes/api.php'; |
|
32 | + require __DIR__.'/../routes/api.php'; |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | /** |
@@ -41,7 +41,7 @@ discard block |
||
41 | 41 | */ |
42 | 42 | public function assets($path) |
43 | 43 | { |
44 | - $file = base_path(trim(config('dbm.resources_path'), '/') . "/" . urldecode($path)); |
|
44 | + $file = base_path(trim(config('dbm.resources_path'), '/')."/".urldecode($path)); |
|
45 | 45 | |
46 | 46 | if (File::exists($file)) { |
47 | 47 | |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | |
81 | 81 | public function generateModelName($className) |
82 | 82 | { |
83 | - return static::getModelNamespace() . '\\' . ucfirst(Str::singular($className)); |
|
83 | + return static::getModelNamespace().'\\'.ucfirst(Str::singular($className)); |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | public function makeModel($model, $table) |
@@ -93,27 +93,27 @@ discard block |
||
93 | 93 | $namespace = implode("\\", $partials); |
94 | 94 | |
95 | 95 | $contents = "<?php\n\n"; |
96 | - $contents .= "namespace " . $namespace . ";\n\n"; |
|
96 | + $contents .= "namespace ".$namespace.";\n\n"; |
|
97 | 97 | if (Driver::isMongoDB()) { |
98 | 98 | $contents .= "use Jenssegers\Mongodb\Eloquent\Model;\n\n"; |
99 | 99 | } else { |
100 | 100 | $contents .= "use Illuminate\Database\Eloquent\Model;\n\n"; |
101 | 101 | } |
102 | - $contents .= "class " . $className . " extends Model\n"; |
|
102 | + $contents .= "class ".$className." extends Model\n"; |
|
103 | 103 | $contents .= "{\n\n"; |
104 | 104 | if (Driver::isMongoDB()) { |
105 | - $contents .= "\tprotected \$collection = '" . $table . "';\n"; |
|
105 | + $contents .= "\tprotected \$collection = '".$table."';\n"; |
|
106 | 106 | } else { |
107 | - $contents .= "\tprotected \$table = '" . $table . "';\n"; |
|
107 | + $contents .= "\tprotected \$table = '".$table."';\n"; |
|
108 | 108 | } |
109 | 109 | |
110 | 110 | // $content .= "\tpublic \$timestamps = false;\n"; |
111 | 111 | $contents .= "}\n"; |
112 | 112 | |
113 | 113 | $filesystem = new Filesystem; |
114 | - $filesystem->put(base_path($model . ".php"), $contents); |
|
114 | + $filesystem->put(base_path($model.".php"), $contents); |
|
115 | 115 | } catch (\Exception $e) { |
116 | - throw new \Exception("There has an error when create model. The error is :" . $e->getMessage(), 1); |
|
116 | + throw new \Exception("There has an error when create model. The error is :".$e->getMessage(), 1); |
|
117 | 117 | |
118 | 118 | } |
119 | 119 | |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | 'name' => $controller, |
127 | 127 | ]); |
128 | 128 | } catch (\Exception $e) { |
129 | - throw new \Exception("There has an error when create Controller. The error is :" . $e->getMessage(), 1); |
|
129 | + throw new \Exception("There has an error when create Controller. The error is :".$e->getMessage(), 1); |
|
130 | 130 | |
131 | 131 | } |
132 | 132 | |
@@ -279,7 +279,7 @@ discard block |
||
279 | 279 | case 'not_authorized': |
280 | 280 | return response()->json([ |
281 | 281 | 'success' => false, |
282 | - 'errors' => ["You don't have permission to " . $slug . " " . $prefix], |
|
282 | + 'errors' => ["You don't have permission to ".$slug." ".$prefix], |
|
283 | 283 | ], 401); |
284 | 284 | break; |
285 | 285 | case 'authorized': |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | 'prefix' => 'database', |
5 | 5 | 'middleware' => 'auth:api', |
6 | 6 | 'namespace' => config('dbm.controller_namespace'), |
7 | -], function () { |
|
7 | +], function() { |
|
8 | 8 | |
9 | 9 | // Helpers Route |
10 | 10 | Route::get('assets', 'ManagerController@assets')->name('dbm.asset'); |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | Route::put('/relationship', 'RelationController@update'); |
47 | 47 | Route::delete('/relationship', 'RelationController@delete'); |
48 | 48 | // Table |
49 | - Route::group(['prefix' => 'table'], function () { |
|
49 | + Route::group(['prefix' => 'table'], function() { |
|
50 | 50 | Route::get('/details/{table}', 'RecordController@getTableDetails'); |
51 | 51 | Route::get('/columns/{table}', 'DatabaseController@getTableColumns'); |
52 | 52 | }); |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | Route::group([ |
62 | 62 | 'prefix' => 'database', |
63 | 63 | 'namespace' => config('dbm.controller_namespace'), |
64 | -], function () { |
|
64 | +], function() { |
|
65 | 65 | // User |
66 | 66 | Route::post('/login', 'UserController@login'); |
67 | 67 | Route::post('/oauth/token', 'UserController@getPersonalAccessToken'); |
@@ -35,7 +35,7 @@ |
||
35 | 35 | $prefix = (Driver::isMongoDB()) ? "_" : ""; |
36 | 36 | |
37 | 37 | foreach ($fields as $fld) { |
38 | - if ($fld->id == $field->{$prefix . "id"}) { |
|
38 | + if ($fld->id == $field->{$prefix."id"}) { |
|
39 | 39 | |
40 | 40 | $relationship = $fld->settings; |
41 | 41 | $localTable = $relationship['localTable']; |