alias( 'dataSource', 'depicter.dataSources.dataSource' ); // register posts dataSource $container[ 'depicter.dataSources.posts' ] = function () { return new Posts(); }; // register products dataSource $container[ 'depicter.dataSources.products' ] = function () { return new Products(); }; // register hand picked products dataSource $container[ 'depicter.dataSources.handPickedProducts' ] = function () { return new HandPickedProducts(); }; } /** * {@inheritDoc} */ public function bootstrap( $container ) {} }