for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Bedard\Shop\Repositories;
use Session;
class CartRepository
{
/**
* @var string Cart persistence key.
*/
const CART_COOKIE = 'bedard_shop_cart';
* Get the current repository, or create one if none exists.
*
* @return [type] [description]
[type]
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.
public function current()
return 'foo';
}
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.