📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 12:11:09
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
vendor
/
php-flasher
/
flasher
/
Storage
/
Filter
📍 /home/orkouolp/web/testing.orkobd/laravel/vendor/php-flasher/flasher/Storage/Filter
🔄 Refresh
✏️
Editing: Filter.php
Writable
<?php declare(strict_types=1); namespace Flasher\Prime\Storage\Filter; use Flasher\Prime\Storage\Filter\Criteria\CriteriaInterface; final class Filter implements FilterInterface { /** * @var CriteriaInterface[] */ private array $criteriaChain = []; public function apply(array $envelopes): array { foreach ($this->criteriaChain as $criteria) { $envelopes = $criteria->apply($envelopes); } return $envelopes; } public function addCriteria(CriteriaInterface $criteria): void { $this->criteriaChain[] = $criteria; } }
💾 Save Changes
❌ Cancel