Completed
Push — master ( bcb82e...80085e )
by vijay
07:39
created
app/Itil/database/seeds/SdLocationCategorySeeder.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,12 +8,12 @@
 block discarded – undo
8 8
  * and open the template in the editor.
9 9
  */
10 10
 
11
-class SdLocationCategorySeeder extends Seeder{
11
+class SdLocationCategorySeeder extends Seeder {
12 12
     public function run() {
13
-        $names=['Asia','Europe','America','Australia'];
13
+        $names = ['Asia', 'Europe', 'America', 'Australia'];
14 14
         $created_at = date('Y-d-m H:m:i');
15 15
         $updated_at = date('Y-d-m H:m:i');
16
-        foreach($names as $name){
16
+        foreach ($names as $name) {
17 17
             DB::table('sd_location_categories')
18 18
                     ->insert(['name'=>$name,
19 19
                 'created_at'=>$created_at,
Please login to merge, or discard this patch.
app/Itil/database/seeds/SdAssetAttachmentTypes.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -8,13 +8,13 @@
 block discarded – undo
8 8
  * and open the template in the editor.
9 9
  */
10 10
 
11
-class SdAssetAttachmentTypes extends Seeder{
11
+class SdAssetAttachmentTypes extends Seeder {
12 12
     
13 13
     public function run() {
14
-        $names = ['Database','File',];
14
+        $names = ['Database', 'File', ];
15 15
         $created_at = date('Y-d-m H:m:i');
16 16
         $updated_at = date('Y-d-m H:m:i');
17
-        foreach($names as $name){
17
+        foreach ($names as $name) {
18 18
             DB::table('sd_attachment_types')
19 19
                     ->insert(['name'=>$name,
20 20
                 'created_at'=>$created_at,
Please login to merge, or discard this patch.
Itil/database/migrations/2016_05_30_095428_create_sd_locations_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('sd_locations', function (Blueprint $table) {
15
+        Schema::create('sd_locations', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('location_category_id')->unsigned()->nullable();
18 18
             $table->foreign('location_category_id')->references('id')->on('sd_location_categories');
Please login to merge, or discard this patch.
database/migrations/2016_05_31_102512_create_sd_change_status_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('sd_change_status', function (Blueprint $table) {
15
+        Schema::create('sd_change_status', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->timestamps();
Please login to merge, or discard this patch.
app/Itil/database/migrations/2016_05_31_102657_create_sd_changes_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('sd_changes', function (Blueprint $table) {
15
+        Schema::create('sd_changes', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('description');
18 18
             $table->string('subject');
Please login to merge, or discard this patch.
app/Itil/database/migrations/2016_05_29_131105_create_sd_cab_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('sd_cab', function (Blueprint $table) {
15
+        Schema::create('sd_cab', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->integer('head')->unsigned()->nullable();
Please login to merge, or discard this patch.
Itil/database/migrations/2016_05_30_095158_create_sd_impact_types_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('sd_impact_types', function (Blueprint $table) {
15
+        Schema::create('sd_impact_types', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->timestamps();
Please login to merge, or discard this patch.
database/migrations/2016_05_31_100518_create_sd_release_status_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('sd_release_status', function (Blueprint $table) {
15
+        Schema::create('sd_release_status', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->string('name');
18 18
             $table->timestamps();
Please login to merge, or discard this patch.
database/migrations/2016_07_12_120647_create_table_sd_ticket_relation.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@
 block discarded – undo
12 12
      */
13 13
     public function up()
14 14
     {
15
-        Schema::create('sd_ticket_relation', function (Blueprint $table) {
15
+        Schema::create('sd_ticket_relation', function(Blueprint $table) {
16 16
             $table->increments('id');
17 17
             $table->integer('ticket_id');
18 18
             $table->string('owner');
Please login to merge, or discard this patch.