php-tail 추가

This commit is contained in:
2018-04-01 18:44:45 +09:00
parent 74390602d8
commit 5860a14dae
40 changed files with 1928 additions and 2 deletions
+34
View File
@@ -0,0 +1,34 @@
<?php
namespace PhpExtended\System;
/**
* UnknownOs class file.
*
* This class represents an Os this library was not able to detect.
*
* @author Anastaszor
*/
class UnknownOs extends OperatingSystem
{
/**
* {@inheritDoc}
*
* @see OperatingSystem::isUnix()
*/
public function isUnix()
{
return false;
}
/**
* {@inheritDoc}
*
* @see OperatingSystem::isWindows()
*/
public function isWindows()
{
return false;
}
}