for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace EndorphinStudio\Detector\Detection;
use EndorphinStudio\Detector\Detector;
abstract class AbstractDetection implements DetectionInterface
{
/** @var array */
protected $config;
/** @var Detector */
protected $detector;
public function init(Detector $detector)
$this->detector = $detector;
echo static::class.PHP_EOL;
}
public abstract function detect(string $ua);