Completed
Pull Request — master (#20)
by Pavel
04:45
created
app/src/Console/Traits/DbHelper.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 
55 55
     /**
56 56
      * @param $name
57
-     * @param $table
57
+     * @param string $table
58 58
      * @return bool
59 59
      */
60 60
     private function isRowExist($name, $table)
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 
66 66
     /**
67 67
      * @param $name
68
-     * @param $table
68
+     * @param string $table
69 69
      */
70 70
     private function insertRow($name, $table)
71 71
     {
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
 
77 77
     /**
78 78
      * @param $name
79
-     * @param $table
79
+     * @param string $table
80 80
      */
81 81
     private function deleteRow($name, $table)
82 82
     {
Please login to merge, or discard this patch.
app/database/migrations/20180223214037_create_media_files_table.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,8 +9,7 @@
 block discarded – undo
9 9
      */
10 10
     public function up()
11 11
     {
12
-        Capsule::schema()->create('media_files', function($table)
13
-        {
12
+        Capsule::schema()->create('media_files', function($table) {
14 13
             $table->increments('id');
15 14
             $table->string('file');
16 15
             $table->string('file_info');
Please login to merge, or discard this patch.