for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Basket repository
*
* @author Tim Lochmüller
*/
namespace FRUIT\Shopize\Domain\Repository;
use FRUIT\Shopize\Domain\Model\Basket;
use TYPO3\CMS\Extbase\Utility\DebuggerUtility;
class BasketRepository extends AbstractRepository
{
* Find the current basket
* @return Basket
public function findCurrent()
DebuggerUtility::var_dump('get current Basket');
$basket = new Basket();
return $basket;
}