Moved files

This commit is contained in:
Florian Bouillon 2019-04-16 16:26:59 +02:00
parent fb59a83f5d
commit bffacf4eb7
3 changed files with 4 additions and 4 deletions

View File

@ -1,13 +1,12 @@
<?php <?php
namespace AdminPanel\Classes; namespace AdminPanel;
class Authentificator class Authentificator
{ {
/** @var Authentificator $instance */ /** @var Authentificator $instance */
private static $instance = null; private static $instance = null;
private $isLoggedIn = false;
public static function getInstance() public static function getInstance()
{ {
if (!isset(Authentificator::$instance)) { if (!isset(Authentificator::$instance)) {
@ -16,6 +15,7 @@ class Authentificator
return Authentificator::$instance; return Authentificator::$instance;
} }
private $isLoggedIn = false;
public function isLoggedIn() public function isLoggedIn()
{ {
return $this->isLoggedIn; return $this->isLoggedIn;

View File

@ -1,6 +1,6 @@
<?php <?php
namespace AdminPanel\Classes\Enum; namespace AdminPanel;
abstract class Enum abstract class Enum
{ {

View File

@ -1,6 +1,6 @@
<?php <?php
namespace AdminPanel\Logger; namespace AdminPanel;
use Psr\Log\AbstractLogger; use Psr\Log\AbstractLogger;
use Psr\Log\InvalidArgumentException; use Psr\Log\InvalidArgumentException;