📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 10:27:02
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
vendor
/
php-flasher
/
flasher
/
Stamp
📍 /home/orkouolp/web/testing.orkobd/laravel/vendor/php-flasher/flasher/Stamp
🔄 Refresh
✏️
Editing: PriorityStamp.php
Writable
<?php declare(strict_types=1); namespace Flasher\Prime\Stamp; final readonly class PriorityStamp implements OrderableStampInterface, PresentableStampInterface, StampInterface { public function __construct(private int $priority) { } public function getPriority(): int { return $this->priority; } public function compare(StampInterface $orderable): int { if (!$orderable instanceof self) { return 1; } return $this->priority - $orderable->priority; } /** * @return array{priority: int} */ public function toArray(): array { return ['priority' => $this->priority]; } }
💾 Save Changes
❌ Cancel