blob: f44f240eabeceedac210552e58506ceef8a78057 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
/**
* @link http://github.com/zendframework/zend-mvc-plugin-prg for the canonical source repository
* @copyright Copyright (c) 2005-2016 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
*/
namespace ZendTest\Mvc\Plugin\Prg\TestAsset;
use Zend\Mvc\Controller\AbstractActionController;
class SampleController extends AbstractActionController
{
/**
* Override notFoundAction() to work as a no-op.
*/
public function notFoundAction()
{
}
}
|