Completed
Push — master ( 453e3c...2f13e8 )
by Mahmoud
18:11 queued 11:11
created
Receipt/Data/Migrations/2016_07_20_110999_create_receipts_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
      */
19 19
     public function up()
20 20
     {
21
-        Schema::create('receipts', function (Blueprint $table) {
21
+        Schema::create('receipts', function(Blueprint $table) {
22 22
             $table->increments('id');
23 23
 
24 24
             $table->float('amount')->default(0.0);
Please login to merge, or discard this patch.
app/Containers/Integration/Data/Factories/IntegrationFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@
 block discarded – undo
4 4
 use App\Containers\Integration\Models\Platform;
5 5
 use App\Containers\User\Models\User;
6 6
 
7
-$factory->define(Integration::class, function (Faker\Generator $faker) {
7
+$factory->define(Integration::class, function(Faker\Generator $faker) {
8 8
     return [
9 9
         'title'          => $faker->text(10),
10 10
         'user_id'        => factory(User::class)->create()->id,
Please login to merge, or discard this patch.
app/Containers/Integration/Data/Factories/PlatformFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 use App\Containers\Integration\Models\Platform;
4 4
 
5
-$factory->define(Platform::class, function (Faker\Generator $faker) {
5
+$factory->define(Platform::class, function(Faker\Generator $faker) {
6 6
     return [
7 7
         'title' => $faker->text(10),
8 8
     ];
Please login to merge, or discard this patch.
Integration/Data/Migrations/2016_01_09_110999_create_platforms_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
      */
19 19
     public function up()
20 20
     {
21
-        Schema::create('platforms', function (Blueprint $table) {
21
+        Schema::create('platforms', function(Blueprint $table) {
22 22
             $table->increments('id');
23 23
 
24 24
             $table->string('title');
Please login to merge, or discard this patch.
Integration/Data/Migrations/2016_01_10_110999_create_integrations_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
      */
19 19
     public function up()
20 20
     {
21
-        Schema::create('integrations', function (Blueprint $table) {
21
+        Schema::create('integrations', function(Blueprint $table) {
22 22
             $table->increments('id');
23 23
 
24 24
             $table->string('title');
Please login to merge, or discard this patch.
app/Containers/Invoice/Data/Factories/InvoiceFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 use App\Containers\Invoice\Models\Invoice;
4 4
 
5
-$factory->define(Invoice::class, function (Faker\Generator $faker) {
5
+$factory->define(Invoice::class, function(Faker\Generator $faker) {
6 6
     return [
7 7
         'total' => $faker->randomFloat(2, 99, 3000),
8 8
         'items_cost' => $faker->randomFloat(2, 99, 3000),
Please login to merge, or discard this patch.
Invoice/Data/Migrations/2016_10_10_110947_create_invoice_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
      */
19 19
     public function up()
20 20
     {
21
-        Schema::create('invoices', function (Blueprint $table) {
21
+        Schema::create('invoices', function(Blueprint $table) {
22 22
             $table->increments('id');
23 23
 
24 24
             $table->float('total')->default(0.0);
Please login to merge, or discard this patch.
app/Ship/Features/Tests/PhpUnit/TestsCustomHelperTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      */
32 32
     public function getApplicationTokenHeader($user = null, $appName = 'Testing App')
33 33
     {
34
-        $developerUser = $this->setupTestingUserAccess($user ? : $this->getTestingUser(), ['roles' => 'developer']);
34
+        $developerUser = $this->setupTestingUserAccess($user ?: $this->getTestingUser(), ['roles' => 'developer']);
35 35
 
36 36
         $store = factory(Store::class)->create([
37 37
             'user_id' => $developerUser->id
Please login to merge, or discard this patch.