Files
core/vendor/php-extended/php-system/src/Irix64.php
T
2018-04-01 18:44:45 +09:00

37 lines
486 B
PHP

<?php
namespace PhpExtended\System;
/**
* Irix64 class file.
*
* This class represents an operating system of the IRIX family.
*
* @author Anastaszor
* @see https://en.wikipedia.org/wiki/IRIX
*/
class Irix64 extends OperatingSystem
{
/**
* {@inheritDoc}
*
* @see OperatingSystem::isUnix()
*/
public function isUnix()
{
return true;
}
/**
* {@inheritDoc}
*
* @see OperatingSystem::isWindows()
*/
public function isWindows()
{
return false;
}
}