Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
phosphorylation
/
tecas-solar.ma
/
vendor
/
filament
/
actions
/
src
/
Concerns
:
CanCustomizeProcess.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Filament\Actions\Concerns; use Closure; trait CanCustomizeProcess { protected ?Closure $using = null; public function using(?Closure $using): static { $this->using = $using; return $this; } /** * @param array<string, mixed> $parameters */ public function process(?Closure $default, array $parameters = []): mixed { return $this->evaluate($this->using ?? $default, $parameters); } }