Completed
Push — master ( 0ea243...da58d4 )
by Henry
10:25 queued 33s
created

includes/Bootstrap/Status.php (1 issue)

Labels
Severity

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 Redaxscript\Bootstrap;
3
4
use Redaxscript\Auth;
0 ignored issues
show
This use statement conflicts with another class in this namespace, Redaxscript\Bootstrap\Auth.

Let’s assume that you have a directory layout like this:

.
|-- OtherDir
|   |-- Bar.php
|   `-- Foo.php
`-- SomeDir
    `-- Foo.php

and let’s assume the following content of Bar.php:

// Bar.php
namespace OtherDir;

use SomeDir\Foo; // This now conflicts the class OtherDir\Foo

If both files OtherDir/Foo.php and SomeDir/Foo.php are loaded in the same runtime, you will see a PHP error such as the following:

PHP Fatal error:  Cannot use SomeDir\Foo as Foo because the name is already in use in OtherDir/Foo.php

However, as OtherDir/Foo.php does not necessarily have to be loaded and the error is only triggered if it is loaded before OtherDir/Bar.php, this problem might go unnoticed for a while. In order to prevent this error from surfacing, you must import the namespace with a different alias:

// Bar.php
namespace OtherDir;

use SomeDir\Foo as SomeDirFoo; // There is no conflict anymore.
Loading history...
5
use Redaxscript\Db;
6
7
/**
8
 * children class to boot the status
9
 *
10
 * @since 3.1.0
11
 *
12
 * @package Redaxscript
13
 * @category Bootstrap
14
 * @author Henry Ruhs
15
 */
16
17
class Status extends BootstrapAbstract
18
{
19
	/**
20
	 * automate run
21
	 *
22
	 * @since 3.1.0
23
	 */
24
25 2
	public function autorun() : void
26
	{
27 2
		$auth = new Auth($this->_request);
28
29
		/* set the registry */
30
31 2
		if ($auth->getStatus())
32
		{
33 1
			$this->_registry->set('loggedIn', $this->_registry->get('token'));
34 1
			$this->_registry->set('authStatus', $auth->getStatus());
35
		}
36 2
		$this->_registry->set('dbStatus', Db::getStatus());
37 2
	}
38
}
39