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/tests/includes/supports.php

15 lines
273 B
PHP

<?php
/**
* Check whether operator overloading is supported.
*
* @return bool
*/
function supports_operator_overloading() {
if (!Arma\Features::OPERATORS) {
echo 'skip operator overloading is not supported.';
return false;
}
return true;
}