for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace eXpansion\Framework\GameTrackmania\DataProviders\ScriptTimeAttack;
use eXpansion\Framework\Core\DataProviders\AbstractDataProvider;
use eXpansion\Framework\Core\DataProviders\MethodScriptDataProviderInterface;
/**
* Class MethodGetNumberLapsDataProvider
*
* @author de Cramer Oliver<[email protected]>
* @copyright 2017 eXpansion
* @package eXpansion\Framework\GameTrackmania\DataProviders
*/
class MethodGetNumberLapsDataProvider extends AbstractDataProvider implements MethodScriptDataProviderInterface
{
* @inheritdoc
* @param string $pluginId
* @param mixed $pluginService
public function registerPlugin($pluginId, $pluginService)
parent::registerPlugin($pluginId, $pluginService);
$pluginService->setCurrentDataProvider($this);
}
* Request call to fetch something..
* @return void
public function request()
$this->dispatch('set', [1]);