🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:Dispatchable.php
<?php namespace Illuminate\Foundation\Events; trait Dispatchable { /** * Dispatch the event with the given arguments. * * @param mixed ...$arguments * @return mixed */ public static function dispatch(...$arguments) { return event(new static(...$arguments)); } /** * Dispatch the event with the given arguments if the given truth test passes. * * @param bool $boolean * @param mixed ...$arguments * @return mixed */ public static function dispatchIf($boolean, ...$arguments) { if ($boolean) { return event(new static(...$arguments)); } } /** * Dispatch the event with the given arguments unless the given truth test passes. * * @param bool $boolean * @param mixed ...$arguments * @return mixed */ public static function dispatchUnless($boolean, ...$arguments) { if (! $boolean) { return event(new static(...$arguments)); } } /** * Broadcast the event with the given arguments. * * @param mixed ...$arguments * @return \Illuminate\Broadcasting\PendingBroadcast */ public static function broadcast(...$arguments) { return broadcast(new static(...$arguments)); } }
Save Changes
Cancel
Create New File
Create New Folder