-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
_ide_helper.php
4033 lines (3709 loc) · 142 KB
/
_ide_helper.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
// @formatter:off
/**
* A helper file for Laravel 5, to provide autocomplete information to your IDE
* Generated for Laravel 5.8 on 2019-06-12 01:35:06.
*
* This file should not be included in your code, only analyzed by your IDE!
*
* @author Barry vd. Heuvel <barryvdh@gmail.com>
* @see https://github.com/barryvdh/laravel-ide-helper
*/
namespace Illuminate\Database\Capsule {
/**
*
*
*/
class Manager {
}
}
namespace Illuminate\Support\Facades {
/**
*
*
* @method static bool has(string $key)
* @method static bool missing(string $key)
* @method static mixed get(string $key, mixed $default = null)
* @method static mixed pull(string $key, mixed $default = null)
* @method static bool put(string $key, $value, \DateTimeInterface|\DateInterval|int $ttl)
* @method static bool add(string $key, $value, \DateTimeInterface|\DateInterval|int $ttl)
* @method static int|bool increment(string $key, $value = 1)
* @method static int|bool decrement(string $key, $value = 1)
* @method static bool forever(string $key, $value)
* @method static mixed remember(string $key, \DateTimeInterface|\DateInterval|int $ttl, \Closure $callback)
* @method static mixed sear(string $key, \Closure $callback)
* @method static mixed rememberForever(string $key, \Closure $callback)
* @method static bool forget(string $key)
* @method static \Illuminate\Contracts\Cache\Store getStore()
* @see \Illuminate\Cache\CacheManager
* @see \Illuminate\Cache\Repository
*/
class Cache {
/**
* Get a cache store instance by name, wrapped in a repository.
*
* @param string|null $name
* @return \Illuminate\Contracts\Cache\Repository
* @static
*/
public static function store($name = null)
{
/** @var \Illuminate\Cache\CacheManager $instance */
return $instance->store($name);
}
/**
* Get a cache driver instance.
*
* @param string|null $driver
* @return \Illuminate\Contracts\Cache\Repository
* @static
*/
public static function driver($driver = null)
{
/** @var \Illuminate\Cache\CacheManager $instance */
return $instance->driver($driver);
}
/**
* Create a new cache repository with the given implementation.
*
* @param \Illuminate\Contracts\Cache\Store $store
* @return \Illuminate\Cache\Repository
* @static
*/
public static function repository($store)
{
/** @var \Illuminate\Cache\CacheManager $instance */
return $instance->repository($store);
}
/**
* Get the default cache driver name.
*
* @return string
* @static
*/
public static function getDefaultDriver()
{
/** @var \Illuminate\Cache\CacheManager $instance */
return $instance->getDefaultDriver();
}
/**
* Set the default cache driver name.
*
* @param string $name
* @return void
* @static
*/
public static function setDefaultDriver($name)
{
/** @var \Illuminate\Cache\CacheManager $instance */
$instance->setDefaultDriver($name);
}
/**
* Unset the given driver instances.
*
* @param array|string|null $name
* @return \Illuminate\Cache\CacheManager
* @static
*/
public static function forgetDriver($name = null)
{
/** @var \Illuminate\Cache\CacheManager $instance */
return $instance->forgetDriver($name);
}
/**
* Register a custom driver creator Closure.
*
* @param string $driver
* @param \Closure $callback
* @return \Illuminate\Cache\CacheManager
* @static
*/
public static function extend($driver, $callback)
{
/** @var \Illuminate\Cache\CacheManager $instance */
return $instance->extend($driver, $callback);
}
}
/**
*
*
* @see \Illuminate\Events\Dispatcher
*/
class Event {
/**
* Register an event listener with the dispatcher.
*
* @param string|array $events
* @param mixed $listener
* @return void
* @static
*/
public static function listen($events, $listener)
{
/** @var \Illuminate\Events\Dispatcher $instance */
$instance->listen($events, $listener);
}
/**
* Determine if a given event has listeners.
*
* @param string $eventName
* @return bool
* @static
*/
public static function hasListeners($eventName)
{
/** @var \Illuminate\Events\Dispatcher $instance */
return $instance->hasListeners($eventName);
}
/**
* Register an event and payload to be fired later.
*
* @param string $event
* @param array $payload
* @return void
* @static
*/
public static function push($event, $payload = array())
{
/** @var \Illuminate\Events\Dispatcher $instance */
$instance->push($event, $payload);
}
/**
* Flush a set of pushed events.
*
* @param string $event
* @return void
* @static
*/
public static function flush($event)
{
/** @var \Illuminate\Events\Dispatcher $instance */
$instance->flush($event);
}
/**
* Register an event subscriber with the dispatcher.
*
* @param object|string $subscriber
* @return void
* @static
*/
public static function subscribe($subscriber)
{
/** @var \Illuminate\Events\Dispatcher $instance */
$instance->subscribe($subscriber);
}
/**
* Fire an event until the first non-null response is returned.
*
* @param string|object $event
* @param mixed $payload
* @return array|null
* @static
*/
public static function until($event, $payload = array())
{
/** @var \Illuminate\Events\Dispatcher $instance */
return $instance->until($event, $payload);
}
/**
* Fire an event and call the listeners.
*
* @param string|object $event
* @param mixed $payload
* @param bool $halt
* @return array|null
* @static
*/
public static function dispatch($event, $payload = array(), $halt = false)
{
/** @var \Illuminate\Events\Dispatcher $instance */
return $instance->dispatch($event, $payload, $halt);
}
/**
* Get all of the listeners for a given event name.
*
* @param string $eventName
* @return array
* @static
*/
public static function getListeners($eventName)
{
/** @var \Illuminate\Events\Dispatcher $instance */
return $instance->getListeners($eventName);
}
/**
* Register an event listener with the dispatcher.
*
* @param \Closure|string $listener
* @param bool $wildcard
* @return \Closure
* @static
*/
public static function makeListener($listener, $wildcard = false)
{
/** @var \Illuminate\Events\Dispatcher $instance */
return $instance->makeListener($listener, $wildcard);
}
/**
* Create a class based listener using the IoC container.
*
* @param string $listener
* @param bool $wildcard
* @return \Closure
* @static
*/
public static function createClassListener($listener, $wildcard = false)
{
/** @var \Illuminate\Events\Dispatcher $instance */
return $instance->createClassListener($listener, $wildcard);
}
/**
* Remove a set of listeners from the dispatcher.
*
* @param string $event
* @return void
* @static
*/
public static function forget($event)
{
/** @var \Illuminate\Events\Dispatcher $instance */
$instance->forget($event);
}
/**
* Forget all of the pushed listeners.
*
* @return void
* @static
*/
public static function forgetPushed()
{
/** @var \Illuminate\Events\Dispatcher $instance */
$instance->forgetPushed();
}
/**
* Set the queue resolver implementation.
*
* @param callable $resolver
* @return \Illuminate\Events\Dispatcher
* @static
*/
public static function setQueueResolver($resolver)
{
/** @var \Illuminate\Events\Dispatcher $instance */
return $instance->setQueueResolver($resolver);
}
/**
* Assert if an event was dispatched based on a truth-test callback.
*
* @param string $event
* @param callable|int|null $callback
* @return void
* @static
*/
public static function assertDispatched($event, $callback = null)
{
/** @var \Illuminate\Support\Testing\Fakes\EventFake $instance */
$instance->assertDispatched($event, $callback);
}
/**
* Assert if a event was dispatched a number of times.
*
* @param string $event
* @param int $times
* @return void
* @static
*/
public static function assertDispatchedTimes($event, $times = 1)
{
/** @var \Illuminate\Support\Testing\Fakes\EventFake $instance */
$instance->assertDispatchedTimes($event, $times);
}
/**
* Determine if an event was dispatched based on a truth-test callback.
*
* @param string $event
* @param callable|null $callback
* @return void
* @static
*/
public static function assertNotDispatched($event, $callback = null)
{
/** @var \Illuminate\Support\Testing\Fakes\EventFake $instance */
$instance->assertNotDispatched($event, $callback);
}
/**
* Get all of the events matching a truth-test callback.
*
* @param string $event
* @param callable|null $callback
* @return \Illuminate\Support\Collection
* @static
*/
public static function dispatched($event, $callback = null)
{
/** @var \Illuminate\Support\Testing\Fakes\EventFake $instance */
return $instance->dispatched($event, $callback);
}
/**
* Determine if the given event has been dispatched.
*
* @param string $event
* @return bool
* @static
*/
public static function hasDispatched($event)
{
/** @var \Illuminate\Support\Testing\Fakes\EventFake $instance */
return $instance->hasDispatched($event);
}
}
/**
*
*
* @see \Illuminate\Database\Schema\Builder
*/
class Schema {
/**
* Determine if the given table exists.
*
* @param string $table
* @return bool
* @static
*/
public static function hasTable($table)
{
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
return $instance->hasTable($table);
}
/**
* Get the column listing for a given table.
*
* @param string $table
* @return array
* @static
*/
public static function getColumnListing($table)
{
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
return $instance->getColumnListing($table);
}
/**
* Drop all tables from the database.
*
* @return void
* @static
*/
public static function dropAllTables()
{
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
$instance->dropAllTables();
}
/**
* Drop all views from the database.
*
* @return void
* @static
*/
public static function dropAllViews()
{
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
$instance->dropAllViews();
}
/**
* Set the default string length for migrations.
*
* @param int $length
* @return void
* @static
*/
public static function defaultStringLength($length)
{
//Method inherited from \Illuminate\Database\Schema\Builder
\Illuminate\Database\Schema\MySqlBuilder::defaultStringLength($length);
}
/**
* Determine if the given table has a given column.
*
* @param string $table
* @param string $column
* @return bool
* @static
*/
public static function hasColumn($table, $column)
{
//Method inherited from \Illuminate\Database\Schema\Builder
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
return $instance->hasColumn($table, $column);
}
/**
* Determine if the given table has given columns.
*
* @param string $table
* @param array $columns
* @return bool
* @static
*/
public static function hasColumns($table, $columns)
{
//Method inherited from \Illuminate\Database\Schema\Builder
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
return $instance->hasColumns($table, $columns);
}
/**
* Get the data type for the given column name.
*
* @param string $table
* @param string $column
* @return string
* @static
*/
public static function getColumnType($table, $column)
{
//Method inherited from \Illuminate\Database\Schema\Builder
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
return $instance->getColumnType($table, $column);
}
/**
* Modify a table on the schema.
*
* @param string $table
* @param \Closure $callback
* @return void
* @static
*/
public static function table($table, $callback)
{
//Method inherited from \Illuminate\Database\Schema\Builder
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
$instance->table($table, $callback);
}
/**
* Create a new table on the schema.
*
* @param string $table
* @param \Closure $callback
* @return void
* @static
*/
public static function create($table, $callback)
{
//Method inherited from \Illuminate\Database\Schema\Builder
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
$instance->create($table, $callback);
}
/**
* Drop a table from the schema.
*
* @param string $table
* @return void
* @static
*/
public static function drop($table)
{
//Method inherited from \Illuminate\Database\Schema\Builder
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
$instance->drop($table);
}
/**
* Drop a table from the schema if it exists.
*
* @param string $table
* @return void
* @static
*/
public static function dropIfExists($table)
{
//Method inherited from \Illuminate\Database\Schema\Builder
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
$instance->dropIfExists($table);
}
/**
* Drop all types from the database.
*
* @return void
* @throws \LogicException
* @static
*/
public static function dropAllTypes()
{
//Method inherited from \Illuminate\Database\Schema\Builder
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
$instance->dropAllTypes();
}
/**
* Rename a table on the schema.
*
* @param string $from
* @param string $to
* @return void
* @static
*/
public static function rename($from, $to)
{
//Method inherited from \Illuminate\Database\Schema\Builder
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
$instance->rename($from, $to);
}
/**
* Enable foreign key constraints.
*
* @return bool
* @static
*/
public static function enableForeignKeyConstraints()
{
//Method inherited from \Illuminate\Database\Schema\Builder
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
return $instance->enableForeignKeyConstraints();
}
/**
* Disable foreign key constraints.
*
* @return bool
* @static
*/
public static function disableForeignKeyConstraints()
{
//Method inherited from \Illuminate\Database\Schema\Builder
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
return $instance->disableForeignKeyConstraints();
}
/**
* Register a custom Doctrine mapping type.
*
* @param string $class
* @param string $name
* @param string $type
* @return void
* @throws \Doctrine\DBAL\DBALException
* @static
*/
public static function registerCustomDoctrineType($class, $name, $type)
{
//Method inherited from \Illuminate\Database\Schema\Builder
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
$instance->registerCustomDoctrineType($class, $name, $type);
}
/**
* Get the database connection instance.
*
* @return \Illuminate\Database\Connection
* @static
*/
public static function getConnection()
{
//Method inherited from \Illuminate\Database\Schema\Builder
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
return $instance->getConnection();
}
/**
* Set the database connection instance.
*
* @param \Illuminate\Database\Connection $connection
* @return \Illuminate\Database\Schema\MySqlBuilder
* @static
*/
public static function setConnection($connection)
{
//Method inherited from \Illuminate\Database\Schema\Builder
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
return $instance->setConnection($connection);
}
/**
* Set the Schema Blueprint resolver callback.
*
* @param \Closure $resolver
* @return void
* @static
*/
public static function blueprintResolver($resolver)
{
//Method inherited from \Illuminate\Database\Schema\Builder
/** @var \Illuminate\Database\Schema\MySqlBuilder $instance */
$instance->blueprintResolver($resolver);
}
}
/**
*
*
* @see \Illuminate\Config\Repository
*/
class Config {
/**
* Initialize the Config instance for a specific target path
*
* @param string $path folder path for the config files
* @param string|null $environment path for fine tuning config files with overriding properties
* @return \Config
* @static
*/
public static function init($path, $environment = null)
{
return \Bootstrap\Config\Config::init($path, $environment);
}
/**
*
*
* @static
*/
public static function offsetExists($offset)
{
/** @var \Bootstrap\Config\Config $instance */
return $instance->offsetExists($offset);
}
/**
*
*
* @static
*/
public static function offsetGet($offset)
{
/** @var \Bootstrap\Config\Config $instance */
return $instance->offsetGet($offset);
}
/**
*
*
* @static
*/
public static function offsetSet($offset, $value)
{
/** @var \Bootstrap\Config\Config $instance */
return $instance->offsetSet($offset, $value);
}
/**
*
*
* @static
*/
public static function offsetUnset($offset)
{
/** @var \Bootstrap\Config\Config $instance */
return $instance->offsetUnset($offset);
}
/**
* Determine if the given configuration value exists.
*
* @param string $key
* @return bool
* @static
*/
public static function has($key)
{
/** @var \Bootstrap\Config\Config $instance */
return $instance->has($key);
}
/**
* Get all of the configuration items for the application.
*
* @return array
* @static
*/
public static function all()
{
/** @var \Bootstrap\Config\Config $instance */
return $instance->all();
}
/**
* Get the specified configuration value.
*
* @param string $key
* @param mixed $default
* @return mixed
* @static
*/
public static function get($key, $default = null)
{
/** @var \Bootstrap\Config\Config $instance */
return $instance->get($key, $default);
}
/**
* Set a given configuration value.
*
* @param array|string $key
* @param mixed $value
* @return void
* @static
*/
public static function set($key, $value = null)
{
/** @var \Bootstrap\Config\Config $instance */
$instance->set($key, $value);
}
/**
* Prepend a value onto an array configuration value.
*
* @param string $key
* @param mixed $value
* @return void
* @static
*/
public static function prepend($key, $value)
{
/** @var \Bootstrap\Config\Config $instance */
$instance->prepend($key, $value);
}
/**
* Push a value onto an array configuration value.
*
* @param string $key
* @param mixed $value
* @return void
* @static
*/
public static function push($key, $value)
{
/** @var \Bootstrap\Config\Config $instance */
$instance->push($key, $value);
}
}
/**
*
*
* @see \Illuminate\Filesystem\Filesystem
*/
class File {
/**
* Determine if a file or directory exists.
*
* @param string $path
* @return bool
* @static
*/
public static function exists($path)
{
/** @var \Illuminate\Filesystem\Filesystem $instance */
return $instance->exists($path);
}
/**
* Get the contents of a file.
*
* @param string $path
* @param bool $lock
* @return string
* @throws \Illuminate\Contracts\Filesystem\FileNotFoundException
* @static
*/
public static function get($path, $lock = false)
{
/** @var \Illuminate\Filesystem\Filesystem $instance */
return $instance->get($path, $lock);
}
/**
* Get contents of a file with shared access.
*
* @param string $path
* @return string
* @static
*/
public static function sharedGet($path)
{
/** @var \Illuminate\Filesystem\Filesystem $instance */
return $instance->sharedGet($path);
}
/**
* Get the returned value of a file.
*
* @param string $path
* @return mixed
* @throws \Illuminate\Contracts\Filesystem\FileNotFoundException
* @static
*/
public static function getRequire($path)
{
/** @var \Illuminate\Filesystem\Filesystem $instance */
return $instance->getRequire($path);
}
/**
* Require the given file once.
*
* @param string $file
* @return mixed
* @static
*/
public static function requireOnce($file)
{
/** @var \Illuminate\Filesystem\Filesystem $instance */
return $instance->requireOnce($file);
}
/**
* Get the MD5 hash of the file at the given path.
*
* @param string $path
* @return string
* @static
*/
public static function hash($path)
{
/** @var \Illuminate\Filesystem\Filesystem $instance */
return $instance->hash($path);
}
/**
* Write the contents of a file.
*
* @param string $path
* @param string $contents
* @param bool $lock
* @return int|bool
* @static
*/
public static function put($path, $contents, $lock = false)
{
/** @var \Illuminate\Filesystem\Filesystem $instance */
return $instance->put($path, $contents, $lock);
}
/**
* Write the contents of a file, replacing it atomically if it already exists.
*
* @param string $path
* @param string $content
* @return void
* @static
*/
public static function replace($path, $content)
{
/** @var \Illuminate\Filesystem\Filesystem $instance */
$instance->replace($path, $content);
}
/**
* Prepend to a file.
*
* @param string $path
* @param string $data
* @return int
* @static
*/
public static function prepend($path, $data)
{
/** @var \Illuminate\Filesystem\Filesystem $instance */
return $instance->prepend($path, $data);
}
/**
* Append to a file.
*
* @param string $path
* @param string $data
* @return int
* @static
*/
public static function append($path, $data)
{
/** @var \Illuminate\Filesystem\Filesystem $instance */
return $instance->append($path, $data);
}
/**
* Get or set UNIX mode of a file or directory.
*
* @param string $path
* @param int|null $mode
* @return mixed
* @static
*/
public static function chmod($path, $mode = null)
{
/** @var \Illuminate\Filesystem\Filesystem $instance */
return $instance->chmod($path, $mode);
}
/**
* Delete the file at a given path.
*
* @param string|array $paths
* @return bool
* @static
*/
public static function delete($paths)
{
/** @var \Illuminate\Filesystem\Filesystem $instance */
return $instance->delete($paths);