mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 17:06:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			487 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			487 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Extensions;
 | |
| 
 | |
| use Hashids\Hashids as VendorHashids;
 | |
| use App\Contracts\Extensions\HashidsInterface;
 | |
| 
 | |
| class Hashids extends VendorHashids implements HashidsInterface
 | |
| {
 | |
|     /**
 | |
|      * {@inheritdoc}
 | |
|      */
 | |
|     public function decodeFirst(string $encoded, string $default = null): mixed
 | |
|     {
 | |
|         $result = $this->decode($encoded);
 | |
|         if (!is_array($result)) {
 | |
|             return $default;
 | |
|         }
 | |
| 
 | |
|         return array_first($result, null, $default);
 | |
|     }
 | |
| }
 | 
