Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e01b794

Browse files
committed
composer update
1 parent 000ab5a commit e01b794

9 files changed

Lines changed: 282 additions & 178 deletions

.phpstorm.meta.php/laravel.meta.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
/**
77
* PhpStorm Meta file, to provide autocomplete information for PhpStorm
8-
* Generated on 2020-04-13 09:57:49.
8+
* Generated on 2020-04-25 11:08:55.
99
*
1010
* @author Barry vd. Heuvel <[email protected]>
1111
* @see https://github.com/barryvdh/laravel-ide-helper

_ide_helper.php

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// @formatter:off
33

44
/**
5-
* A helper file for Laravel 5, to provide autocomplete information to your IDE
6-
* Generated for Laravel 6.18.6 on 2020-04-13 09:57:49.
5+
* A helper file for Laravel, to provide autocomplete information to your IDE
6+
* Generated for Laravel 6.18.10 on 2020-04-25 11:08:55.
77
*
88
* This file should not be included in your code, only analyzed by your IDE!
99
*
@@ -13272,7 +13272,8 @@ public static function setVisibility($path, $visibility)
1327213272
* @return bool
1327313273
* @static
1327413274
*/
13275-
public static function prepend($path, $data, $separator = '')
13275+
public static function prepend($path, $data, $separator = '
13276+
')
1327613277
{
1327713278
/** @var \Illuminate\Filesystem\FilesystemAdapter $instance */
1327813279
return $instance->prepend($path, $data, $separator);
@@ -13287,7 +13288,8 @@ public static function prepend($path, $data, $separator = '')
1328713288
* @return bool
1328813289
* @static
1328913290
*/
13290-
public static function append($path, $data, $separator = '')
13291+
public static function append($path, $data, $separator = '
13292+
')
1329113293
{
1329213294
/** @var \Illuminate\Filesystem\FilesystemAdapter $instance */
1329313295
return $instance->append($path, $data, $separator);
@@ -23242,7 +23244,7 @@ public static function orHavingRaw($sql, $bindings = [])
2324223244
/**
2324323245
* Add an "order by" clause to the query.
2324423246
*
23245-
* @param \Closure|\Illuminate\Database\Query\Builder|string $column
23247+
* @param \Closure|\Illuminate\Database\Query\Builder|\Illuminate\Database\Query\Expression|string $column
2324623248
* @param string $direction
2324723249
* @return \Illuminate\Database\Query\Builder
2324823250
* @throws \InvalidArgumentException

app/Models/DocstoreCustomerDirectory.php

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,29 @@
4747
/**
4848
* IXP\Models\DocstoreCustomerDirectory
4949
*
50+
* @property int $id
51+
* @property int $cust_id
52+
* @property int|null $parent_dir_id
53+
* @property string $name
54+
* @property string|null $description
55+
* @property \Illuminate\Support\Carbon|null $created_at
56+
* @property \Illuminate\Support\Carbon|null $updated_at
5057
* @property-read \IXP\Models\Customer $customer
5158
* @property-read \Illuminate\Database\Eloquent\Collection|\IXP\Models\DocstoreCustomerFile[] $files
5259
* @property-read int|null $files_count
53-
* @property-read \IXP\Models\DocstoreCustomerDirectory $parentDirectory
60+
* @property-read \IXP\Models\DocstoreCustomerDirectory|null $parentDirectory
5461
* @property-read \Illuminate\Database\Eloquent\Collection|\IXP\Models\DocstoreCustomerDirectory[] $subDirectories
5562
* @property-read int|null $sub_directories_count
5663
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\DocstoreCustomerDirectory newModelQuery()
5764
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\DocstoreCustomerDirectory newQuery()
5865
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\DocstoreCustomerDirectory query()
66+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\DocstoreCustomerDirectory whereCreatedAt($value)
67+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\DocstoreCustomerDirectory whereCustId($value)
68+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\DocstoreCustomerDirectory whereDescription($value)
69+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\DocstoreCustomerDirectory whereId($value)
70+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\DocstoreCustomerDirectory whereName($value)
71+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\DocstoreCustomerDirectory whereParentDirId($value)
72+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\DocstoreCustomerDirectory whereUpdatedAt($value)
5973
* @mixin \Eloquent
6074
*/
6175

app/Models/DocstoreCustomerFile.php

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,37 @@
4343
/**
4444
* IXP\Models\DocstoreCustomerFile
4545
*
46+
* @property int $id
47+
* @property int $cust_id
48+
* @property int|null $docstore_customer_directory_id
49+
* @property string $name
50+
* @property string $disk
51+
* @property string $path
52+
* @property string|null $sha256
53+
* @property string|null $description
54+
* @property int $min_privs
55+
* @property \Illuminate\Support\Carbon $file_last_updated
56+
* @property int|null $created_by
57+
* @property \Illuminate\Support\Carbon|null $created_at
58+
* @property \Illuminate\Support\Carbon|null $updated_at
4659
* @property-read \IXP\Models\Customer $customer
47-
* @property-read \IXP\Models\DocstoreCustomerDirectory $directory
60+
* @property-read \IXP\Models\DocstoreCustomerDirectory|null $directory
4861
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\DocstoreCustomerFile newModelQuery()
4962
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\DocstoreCustomerFile newQuery()
5063
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\DocstoreCustomerFile query()
64+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\DocstoreCustomerFile whereCreatedAt($value)
65+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\DocstoreCustomerFile whereCreatedBy($value)
66+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\DocstoreCustomerFile whereCustId($value)
67+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\DocstoreCustomerFile whereDescription($value)
68+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\DocstoreCustomerFile whereDisk($value)
69+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\DocstoreCustomerFile whereDocstoreCustomerDirectoryId($value)
70+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\DocstoreCustomerFile whereFileLastUpdated($value)
71+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\DocstoreCustomerFile whereId($value)
72+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\DocstoreCustomerFile whereMinPrivs($value)
73+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\DocstoreCustomerFile whereName($value)
74+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\DocstoreCustomerFile wherePath($value)
75+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\DocstoreCustomerFile whereSha256($value)
76+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\DocstoreCustomerFile whereUpdatedAt($value)
5177
* @mixin \Eloquent
5278
*/
5379

app/Models/PatchPanelPort.php

Lines changed: 43 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -44,49 +44,51 @@
4444
* @property int|null $patch_panel_id
4545
* @property int|null $customer_id
4646
* @property int $state
47-
* @property string $notes
48-
* @property Carbon $assigned_at
49-
* @property Carbon $connected_at
50-
* @property Carbon $cease_requested_at
51-
* @property Carbon $ceased_at
52-
* @property Carbon $last_state_change
53-
* @property boolean $internal_use
47+
* @property string|null $notes
48+
* @property string|null $assigned_at
49+
* @property string|null $connected_at
50+
* @property string|null $cease_requested_at
51+
* @property string|null $ceased_at
52+
* @property string|null $last_state_change
53+
* @property int $internal_use
5454
* @property int $chargeable
55-
* @property int $duplex_master_id
56-
* @property boolean $number
57-
* @property string $colo_circuit_ref
58-
* @property string $ticket_ref
59-
* @property string $private_notes
55+
* @property int|null $duplex_master_id
56+
* @property int $number
57+
* @property string|null $colo_circuit_ref
58+
* @property string|null $ticket_ref
59+
* @property string|null $private_notes
6060
* @property int $owned_by
61-
* @property string $loa_code
62-
* @property string $description
63-
* @property string $colo_billing_ref
64-
* @method static Builder|PatchPanelPort newModelQuery()
65-
* @method static Builder|PatchPanelPort newQuery()
66-
* @method static Builder|PatchPanelPort query()
67-
* @method static Builder|PatchPanelPort whereId($value)
68-
* @method static Builder|PatchPanelPort whereSwitchPortId($value)
69-
* @method static Builder|PatchPanelPort wherePatchPanelId($value)
70-
* @method static Builder|PatchPanelPort whereCustomerId($value)
71-
* @method static Builder|PatchPanelPort whereState($value)
72-
* @method static Builder|PatchPanelPort whereNotes($value)
73-
* @method static Builder|PatchPanelPort whereAssignedAt($value)
74-
* @method static Builder|PatchPanelPort whereConnectAt($value)
75-
* @method static Builder|PatchPanelPort whereCeaseRequestedAt($value)
76-
* @method static Builder|PatchPanelPort whereCeaseAt($value)
77-
* @method static Builder|PatchPanelPort whereLastStateChange($value)
78-
* @method static Builder|PatchPanelPort whereInternalUse($value)
79-
* @method static Builder|PatchPanelPort whereChargeable($value)
80-
* @method static Builder|PatchPanelPort whereDuplexMasterId($value)
81-
* @method static Builder|PatchPanelPort whereNumber($value)
82-
* @method static Builder|PatchPanelPort whereColoCircuitRef($value)
83-
* @method static Builder|PatchPanelPort whereTicketRef($value)
84-
* @method static Builder|PatchPanelPort wherePrivateNotes($value)
85-
* @method static Builder|PatchPanelPort whereOwnedBy($value)
86-
* @method static Builder|PatchPanelPort whereLoaCode($value)
87-
* @method static Builder|PatchPanelPort whereDescription($value)
88-
* @method static Builder|PatchPanelPort whereColoBillingRef($value)
89-
* @mixin Eloquent
61+
* @property string|null $loa_code
62+
* @property string|null $description
63+
* @property string|null $colo_billing_ref
64+
* @property-read \Illuminate\Database\Eloquent\Collection|\IXP\Models\PatchPanelPortFile[] $patchPanelPortFiles
65+
* @property-read int|null $patch_panel_port_files_count
66+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPort newModelQuery()
67+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPort newQuery()
68+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPort query()
69+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPort whereAssignedAt($value)
70+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPort whereCeaseRequestedAt($value)
71+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPort whereCeasedAt($value)
72+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPort whereChargeable($value)
73+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPort whereColoBillingRef($value)
74+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPort whereColoCircuitRef($value)
75+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPort whereConnectedAt($value)
76+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPort whereCustomerId($value)
77+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPort whereDescription($value)
78+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPort whereDuplexMasterId($value)
79+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPort whereId($value)
80+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPort whereInternalUse($value)
81+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPort whereLastStateChange($value)
82+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPort whereLoaCode($value)
83+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPort whereNotes($value)
84+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPort whereNumber($value)
85+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPort whereOwnedBy($value)
86+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPort wherePatchPanelId($value)
87+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPort wherePrivateNotes($value)
88+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPort whereState($value)
89+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPort whereSwitchPortId($value)
90+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPort whereTicketRef($value)
91+
* @mixin \Eloquent
9092
*/
9193

9294
class PatchPanelPort extends Model

app/Models/PatchPanelPortFile.php

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -47,24 +47,25 @@
4747
* @property int|null $patch_panel_port_id
4848
* @property string $name
4949
* @property string $type
50-
* @property Carbon $uploaded_at
50+
* @property string $uploaded_at
5151
* @property string $uploaded_by
52-
* @property integer $size
53-
* @property boolean $is_private
52+
* @property int $size
53+
* @property int $is_private
5454
* @property string $storage_location
55-
* @method static Builder|PatchPanelPortFile newModelQuery()
56-
* @method static Builder|PatchPanelPortFile newQuery()
57-
* @method static Builder|PatchPanelPortFile query()
58-
* @method static Builder|PatchPanelPortFile whereId($value)
59-
* @method static Builder|PatchPanelPortFile wherePatchPanelPortId($value)
60-
* @method static Builder|PatchPanelPortFile whereName($value)
61-
* @method static Builder|PatchPanelPortFile whereType($value)
62-
* @method static Builder|PatchPanelPortFile whereUploadedAt($value)
63-
* @method static Builder|PatchPanelPortFile whereUploadedBy($value)
64-
* @method static Builder|PatchPanelPortFile whereSize($value)
65-
* @method static Builder|PatchPanelPortFile whereIsPrivate($value)
66-
* @method static Builder|PatchPanelPortFile whereStorageLocation($value)
67-
* @mixin Eloquent
55+
* @property-read \IXP\Models\PatchPanelPort|null $patchPanelPort
56+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPortFile newModelQuery()
57+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPortFile newQuery()
58+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPortFile query()
59+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPortFile whereId($value)
60+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPortFile whereIsPrivate($value)
61+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPortFile whereName($value)
62+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPortFile wherePatchPanelPortId($value)
63+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPortFile whereSize($value)
64+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPortFile whereStorageLocation($value)
65+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPortFile whereType($value)
66+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPortFile whereUploadedAt($value)
67+
* @method static \Illuminate\Database\Eloquent\Builder|\IXP\Models\PatchPanelPortFile whereUploadedBy($value)
68+
* @mixin \Eloquent
6869
*/
6970

7071
class PatchPanelPortFile extends Model

0 commit comments

Comments
 (0)