Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
| Total | |
0.00% |
0 / 1 |
|
50.00% |
1 / 2 |
CRAP | |
50.00% |
1 / 2 |
| MobileDetectFactory | |
0.00% |
0 / 1 |
|
50.00% |
1 / 2 |
2.50 | |
50.00% |
1 / 2 |
| __invoke | |
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
|||
| createService | |
0.00% |
0 / 1 |
2 | |
0.00% |
0 / 1 |
|||
| <?php | |
| namespace Neilime\MobileDetect\Factory; | |
| use Zend\ServiceManager\FactoryInterface; | |
| use Zend\ServiceManager\ServiceLocatorInterface; | |
| use Interop\Container\ContainerInterface; | |
| /** | |
| * Class MobileDetectFactory | |
| * @package Neilime\MobileDetect\Factory | |
| */ | |
| class MobileDetectFactory implements FactoryInterface | |
| { | |
| /** | |
| * {@inheritDoc} | |
| */ | |
| public function __invoke(ContainerInterface $container, $requestedName, array $options = null) | |
| { | |
| return new \Mobile_Detect(); | |
| } | |
| /** | |
| * {@inheritDoc} | |
| */ | |
| public function createService(ServiceLocatorInterface $serviceLocator) | |
| { | |
| return $this($serviceLocator, 'mobileDetect'); | |
| } | |
| } |