Completed
Push — master ( 97ec88...d41805 )
by CodexShaper
04:29
created
src/ManagerServiceProvider.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -28,8 +28,8 @@  discard block
 block discarded – undo
28 28
      */
29 29
     public function boot()
30 30
     {
31
-        $this->loadMigrationsFrom(__DIR__ . '/../database/migrations');
32
-        $this->loadViewsFrom(__DIR__ . '/../resources/views', 'dbm');
31
+        $this->loadMigrationsFrom(__DIR__.'/../database/migrations');
32
+        $this->loadViewsFrom(__DIR__.'/../resources/views', 'dbm');
33 33
     }
34 34
 
35 35
     /**
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
         // });
45 45
         $database = $this->app->config['database'];
46 46
 
47
-        $this->app->bind(Dumper::class, function ($app) use ($database) {
47
+        $this->app->bind(Dumper::class, function($app) use ($database) {
48 48
             $connection = $database['default'];
49 49
             $options    = [
50 50
                 "host"     => $database["connections"][$connection]["host"] ?? '',
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
         }
90 90
 
91 91
         $this->mergeConfigFrom(
92
-            __DIR__ . '/../config/dbm.php', 'config'
92
+            __DIR__.'/../config/dbm.php', 'config'
93 93
         );
94 94
         $this->loadHelpers();
95 95
         $this->registerPublish();
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
 
99 99
     protected function loadHelpers()
100 100
     {
101
-        foreach (glob(__DIR__ . '/Helpers/*.php') as $filename) {
101
+        foreach (glob(__DIR__.'/Helpers/*.php') as $filename) {
102 102
             require_once $filename;
103 103
         }
104 104
     }
@@ -107,16 +107,16 @@  discard block
 block discarded – undo
107 107
     {
108 108
         $publishable = [
109 109
             'dbm.config'    => [
110
-                __DIR__ . '/../config/dbm.php' => config_path('dbm.php'),
110
+                __DIR__.'/../config/dbm.php' => config_path('dbm.php'),
111 111
             ],
112 112
             'dbm.seeds'     => [
113
-                __DIR__ . "/../database/seeds/" => database_path('seeds'),
113
+                __DIR__."/../database/seeds/" => database_path('seeds'),
114 114
             ],
115 115
             'dbm.views'     => [
116
-                __DIR__ . '/../resources/views' => resource_path('views/vendor/dbm/views'),
116
+                __DIR__.'/../resources/views' => resource_path('views/vendor/dbm/views'),
117 117
             ],
118 118
             'dbm.resources' => [
119
-                __DIR__ . '/../resources' => resource_path('views/vendor/dbm'),
119
+                __DIR__.'/../resources' => resource_path('views/vendor/dbm'),
120 120
             ],
121 121
         ];
122 122
 
Please login to merge, or discard this patch.
src/MongoDB/Passport/Token.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
     {
72 72
         $provider = config('auth.guards.api.provider');
73 73
 
74
-        return $this->belongsTo(config('auth.providers.' . $provider . '.model'));
74
+        return $this->belongsTo(config('auth.providers.'.$provider.'.model'));
75 75
     }
76 76
 
77 77
     /**
Please login to merge, or discard this patch.
src/Commands/DatabaseRestore.php 1 patch
Spacing   +6 added lines, -6 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
     }
@@ -68,24 +68,24 @@  discard block
 block discarded – undo
68 68
         $password = config('database.connections.mysql.password', '');
69 69
 
70 70
         $driver    = dbm_driver();
71
-        $directory = 'backups' . DIRECTORY_SEPARATOR . $driver;
71
+        $directory = 'backups'.DIRECTORY_SEPARATOR.$driver;
72 72
 
73 73
         if ($this->option('path') != null) {
74 74
             $path = $this->option('path');
75 75
         } else if ($this->option('file') != null) {
76
-            $path = $directory . DIRECTORY_SEPARATOR . $this->option('file');
76
+            $path = $directory.DIRECTORY_SEPARATOR.$this->option('file');
77 77
         } else {
78 78
             $files = array_reverse(Storage::files($directory));
79 79
             $path  = $files[0];
80 80
         }
81 81
 
82
-        $filePath = DBM::getPathPrefix() . DIRECTORY_SEPARATOR . $path;
82
+        $filePath = DBM::getPathPrefix().DIRECTORY_SEPARATOR.$path;
83 83
 
84 84
         $isCompress         = config('dbm.backup.compress', false);
85 85
         $compressBinaryPath = config('dbm.backup.compress_binary_path', "");
86 86
         $compressCommand    = config('dbm.backup.uncompress_command', "gunzip");
87 87
         $compressExtension  = config('dbm.backup.compress_extension', ".gz");
88
-        $dumpBinaryPath     = config('dbm.backup.' . $driver . '.binary_path', '');
88
+        $dumpBinaryPath     = config('dbm.backup.'.$driver.'.binary_path', '');
89 89
 
90 90
         try
91 91
         {
Please login to merge, or discard this patch.
src/Commands/InstallDatabaseManager.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      *
27 27
      * @var string
28 28
      */
29
-    protected $seedersPath = __DIR__ . '/../../database/seeds/';
29
+    protected $seedersPath = __DIR__.'/../../database/seeds/';
30 30
 
31 31
     /**
32 32
      * Get Option
@@ -47,8 +47,8 @@  discard block
 block discarded – undo
47 47
      */
48 48
     protected function findComposer()
49 49
     {
50
-        if (file_exists(getcwd() . '/composer.phar')) {
51
-            return '"' . PHP_BINARY . '" ' . getcwd() . '/composer.phar';
50
+        if (file_exists(getcwd().'/composer.phar')) {
51
+            return '"'.PHP_BINARY.'" '.getcwd().'/composer.phar';
52 52
         }
53 53
         return 'composer';
54 54
     }
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 
73 73
         $this->info('Dumping the autoloaded files and reloading all new files');
74 74
         $composer = $this->findComposer();
75
-        $process  = new Process($composer . ' dump-autoload');
75
+        $process  = new Process($composer.' dump-autoload');
76 76
         $process->setTimeout(null); // Setting timeout to null to prevent installation from stopping at a certain point in time
77 77
         $process->setWorkingDirectory(base_path())->run();
78 78
 
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
 
96 96
         // Seeding Dummy Data
97 97
         $class = 'DatabaseManagerSeeder';
98
-        $file  = $this->seedersPath . $class . '.php';
98
+        $file  = $this->seedersPath.$class.'.php';
99 99
 
100 100
         if (file_exists($file) && !class_exists($class)) {
101 101
             require_once $file;
Please login to merge, or discard this patch.
src/Http/Controllers/BackupController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 
27 27
             $userPermissions = DBM::userPermissions();
28 28
             $driver          = dbm_driver();
29
-            $directory       = 'backups' . DIRECTORY_SEPARATOR . $driver;
29
+            $directory       = 'backups'.DIRECTORY_SEPARATOR.$driver;
30 30
             $files           = array_reverse(Storage::files($directory));
31 31
             $results         = [];
32 32
             foreach ($files as $file) {
Please login to merge, or discard this patch.
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;
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.