Skip to content

Commit

Permalink
Add phpdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdnbrk committed Mar 31, 2020
1 parent 69b58d9 commit 7a02dfb
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions database/factories/InventoryFactory.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

/** @var \Illuminate\Database\Eloquent\Factory $factory */

use Faker\Generator as Faker;
use Illuminate\Support\Carbon;
use Just\Warehouse\Models\Inventory;
Expand Down
2 changes: 2 additions & 0 deletions database/factories/LocationFactory.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

/** @var \Illuminate\Database\Eloquent\Factory $factory */

use Faker\Generator as Faker;
use Just\Warehouse\Models\Location;

Expand Down
2 changes: 2 additions & 0 deletions database/factories/OrderFactory.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

/** @var \Illuminate\Database\Eloquent\Factory $factory */

use Faker\Generator as Faker;
use Just\Warehouse\Models\Order;

Expand Down
2 changes: 2 additions & 0 deletions database/factories/OrderLineFactory.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

/** @var \Illuminate\Database\Eloquent\Factory $factory */

use Faker\Generator as Faker;
use Just\Warehouse\Models\Order;
use Just\Warehouse\Models\OrderLine;
Expand Down
2 changes: 2 additions & 0 deletions database/factories/ReservationFactory.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

/** @var \Illuminate\Database\Eloquent\Factory $factory */

use Just\Warehouse\Models\Reservation;

$factory->define(Reservation::class, function () {
Expand Down

0 comments on commit 7a02dfb

Please sign in to comment.