Completed
Push — master ( 344e86...21a985 )
by
unknown
12:33
created

Classes/Controller/PageController.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
namespace DCNGmbH\MooxCore\Controller;
3
/***************************************************************
4
 *  Copyright notice
5
 *
6
 *  (c) 2014 Claus Due <[email protected]>
7
 *
8
 *  All rights reserved
9
 *
10
 *  This script is part of the TYPO3 project. The TYPO3 project is
11
 *  free software; you can redistribute it and/or modify
12
 *  it under the terms of the GNU General Public License as published by
13
 *  the Free Software Foundation; either version 2 of the License, or
14
 *  (at your option) any later version.
15
 *
16
 *  The GNU General Public License can be found at
17
 *  http://www.gnu.org/copyleft/gpl.html.
18
 *
19
 *  This script is distributed in the hope that it will be useful,
20
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
21
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22
 *  GNU General Public License for more details.
23
 *
24
 *  This copyright notice MUST APPEAR in all copies of the script!
25
 ***************************************************************/
26
27
 use FluidTYPO3\Fluidpages\Controller\AbstractPageController;
28
 
29
/**
30
 * Page Controller
31
 *
32
 * Controller which is used to render individual page template
33
 * files - each template corresponding to one action.
34
 *
35
 * @package FluidpagesBootstrap
36
 * @subpackage Controller
37
 * @route off
38
 */
39
class PageController extends AbstractPageController {
0 ignored issues
show
Deprecated Code introduced by
The class FluidTYPO3\Fluidpages\Co...\AbstractPageController has been deprecated.

This class, trait or interface has been deprecated.

Loading history...
40
41
	/**
42
	 * @return string
43
	 */
44
	public function defaultPageAction() {
45
46
	}
47
48
	/**
49
	 * @return string
50
	 */
51
	public function errorAction() {
52
53
	}
54
55
}
56