-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNullController.php
More file actions
44 lines (39 loc) · 938 Bytes
/
NullController.php
File metadata and controls
44 lines (39 loc) · 938 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
/*
* This file is part of the process-control package.
*
* (c) Hannes Schulz <hannes.schulz@aboutcoders.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Abc\ProcessControl;
/**
* @author Hannes Schulz <hannes.schulz@aboutcoders.com>
*/
class NullController implements ControllerInterface
{
/**
* @deprecated since 1.3.0 (to be removed in 2.0)
* {@inheritdoc}
*/
public function doExit()
{
@trigger_error(sprintf('The %s method is deprecated since version 1.3.0 and will be removed in version 2.0. Use doStop() instead.', __METHOD__), E_USER_DEPRECATED);
return $this->doStop();
}
/**
* {@inheritdoc}
*/
public function doStop()
{
return false;
}
/**
* {@inheritdoc}
*/
public function doPause()
{
return false;
}
}