🤩 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:SupportsStartWithEndWith.php
<?php namespace Spatie\LaravelPackageTools\Commands\Concerns; use Closure; trait SupportsStartWithEndWith { public ?Closure $startWith = null; public ?Closure $endWith = null; public function startWith(callable $callable): self { $this->startWith = $callable; return $this; } public function endWith(callable $callable): self { $this->endWith = $callable; return $this; } protected function processStartWith(): self { if ($this->startWith) { ($this->startWith)($this); } return $this; } protected function processEndWith(): self { if ($this->endWith) { ($this->endWith)($this); } return $this; } }
Save Changes
Cancel
Create New File
Create New Folder