Conflicts: core/lib/Thelia/Core/Template/Loop/Category.php core/lib/Thelia/Core/Template/Loop/FeatureValue.php core/lib/Thelia/Core/Template/Loop/Folder.php core/lib/Thelia/Core/Template/Loop/Product.php core/lib/Thelia/Core/Template/Smarty/Plugins/TheliaLoop.php install/faker.php
21 lines
272 B
Plaintext
Executable File
21 lines
272 B
Plaintext
Executable File
<?php
|
|
|
|
namespace Thelia\Controller;
|
|
|
|
use Symfony\Component\HttpFoundation\Request;
|
|
|
|
/**
|
|
*
|
|
* @author Manuel Raynaud <mraynaud@openstudio.fr>
|
|
*/
|
|
|
|
interface NullControllerInterface
|
|
{
|
|
/**
|
|
* Nothing to do
|
|
*/
|
|
public function noAction(Request $request);
|
|
|
|
}
|
|
|