mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-12 22:50:07 +01:00
17 lines
257 B
PHP
Executable file
17 lines
257 B
PHP
Executable file
<?php
|
|
|
|
namespace Illuminate\Contracts\Support;
|
|
|
|
/**
|
|
* @template TKey of array-key
|
|
* @template TValue
|
|
*/
|
|
interface Arrayable
|
|
{
|
|
/**
|
|
* Get the instance as an array.
|
|
*
|
|
* @return array<TKey, TValue>
|
|
*/
|
|
public function toArray();
|
|
}
|