This repository has been archived on 2020-06-07. You can view files and clone it, but cannot push or open issues or pull requests.
php-armadillo/stubs/Features.php

19 lines
266 B
PHP

<?php
namespace Arma;
/**
* Support status of option features.
*
* Values of constants in this class is dependent.
*
* @package Arma
*/
abstract class Features
{
/**
* Whether operator overloading is supported.
*/
const OPERATORS = true;
}