for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Crossjoin\Browscap\Source;
use Crossjoin\Browscap\Type;
/**
* Class None
*
* @package Crossjoin\Browscap\Source
* @author Christoph Ziegenberg <[email protected]>
* @link https://github.com/crossjoin/browscap
*/
class None implements SourceInterface, SourceFactoryInterface
{
* @inheritdoc
public function getReleaseTime() : int
return 0;
}
public function getVersion() : int
public function getType() : int
return Type::UNKNOWN;
public function getDataSets() : \Iterator
return new \EmptyIterator();