index.php
php · 38 lines · part of aaa · raw
<?
final class StorageArrayDatabase
{
/**
* @return int
* @throws DatabaseException
*/
static function Create(): int
{
}
/**
* @param int $arrayId
* @param int $position
* @param int $valueId
* @return void
* @throws StorageOutOfBoundsException
*/
static function Insert( int $arrayId, int $position, int $valueId ): void
{
}
/**
* @param int $arrayId
* @param int $position
* @return void
* @throws StorageOutOfBoundsException
*/
static function Delete( int $arrayId, int $position ): void
{
}
}