123456789101112131415161718192021222324252627282930313233 |
- <?php
- declare(strict_types=1);
- namespace Hyperf\Contract;
- interface CastsAttributes
- {
-
- public function get($model, string $key, $value, array $attributes);
-
- public function set($model, string $key, $value, array $attributes);
- }
|