37 lines
504 B
PHP
37 lines
504 B
PHP
<?php
|
|
|
|
namespace PhpExtended\System;
|
|
|
|
/**
|
|
* Win64 class file.
|
|
*
|
|
* This class represents an operating system of the windows x64 family.
|
|
*
|
|
* @author Anastaszor
|
|
* @see https://en.wikipedia.org/wiki/Microsoft_Windows
|
|
*/
|
|
class Win64 extends OperatingSystem
|
|
{
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*
|
|
* @see OperatingSystem::isUnix()
|
|
*/
|
|
public function isUnix()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*
|
|
* @see OperatingSystem::isWindows()
|
|
*/
|
|
public function isWindows()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
}
|