Blame | Letzte Änderung | Log anzeigen | RSS feed
<?php namespace Clockwork\DataSource;use Clockwork\Request\Request;// Data source interface, all data sources must implement this interfaceinterface DataSourceInterface{// Adds collected data to the request and returns itpublic function resolve(Request $request);// Extends the request with an additional data, which is not required for normal usepublic function extend(Request $request);// Reset the data source to an empty state, clearing any collected datapublic function reset();}