PHP Classes

File: global/double-array.php

Recommend this page to a friend!
  Classes of Scott Arciszewski   Typed Arrays   global/double-array.php   Download  
File: global/double-array.php
Role: Class source
Content type: text/plain
Description: Class source
Class: Typed Arrays
Implement arrays of values of only one type
Author: By
Last change:
Date: 9 days ago
Size: 511 bytes
 

Contents

Class file image Download
<?php
declare(strict_types=1);
use
ParagonIE\TypedArrays\ObjectTypedArray;

class
bool???? extends ObjectTypedArray
{
    protected const
string OBJECT_TYPE = 'bool??';
}

class
float???? extends ObjectTypedArray
{
    protected const
string OBJECT_TYPE = 'float??';
}

class
int???? extends ObjectTypedArray
{
    protected const
string OBJECT_TYPE = 'int??';
}

class
string???? extends ObjectTypedArray
{
    protected const
string OBJECT_TYPE = 'string??';
}