-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Frank.Markwort
committed
Sep 16, 2024
1 parent
2eb9ce6
commit 4ee5b70
Showing
154 changed files
with
379 additions
and
378 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/Nmea/Cache/AbstractRingBuffer.php → src/Core/Cache/AbstractRingBuffer.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace Nmea\Cache; | ||
namespace Core\Cache; | ||
|
||
abstract class AbstractRingBuffer | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/Nmea/Cache/ArrayRingBuffer.php → src/Core/Cache/ArrayRingBuffer.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace Nmea\Cache; | ||
namespace Core\Cache; | ||
|
||
use Iterator; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
src/Nmea/Cache/CacheInterface.php → src/Core/Cache/CacheInterface.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace Nmea\Cache; | ||
namespace Core\Cache; | ||
|
||
interface CacheInterface | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/Nmea/Cache/MemcachedRingBuffer.php → src/Core/Cache/MemcachedRingBuffer.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace Nmea\Config; | ||
namespace Core\Config; | ||
|
||
class Config | ||
{ | ||
|
2 changes: 1 addition & 1 deletion
2
src/Nmea/Config/ConfigEnums.php → src/Core/Config/ConfigEnums.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace Nmea\Config; | ||
namespace Core\Config; | ||
|
||
enum ConfigEnums | ||
{ | ||
|
2 changes: 1 addition & 1 deletion
2
src/Nmea/Config/ConfigException.php → src/Core/Config/ConfigException.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace Nmea\Config; | ||
namespace Core\Config; | ||
|
||
use Exception; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
* @project Poseidon | ||
* | ||
*/ | ||
namespace Nmea\Config; | ||
namespace Core\Config; | ||
|
||
class ConfigFactory | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
* @project Poseidon | ||
* | ||
*/ | ||
namespace Nmea\Config; | ||
namespace Core\Config; | ||
|
||
class ConfigPgn | ||
{ | ||
|
2 changes: 1 addition & 1 deletion
2
src/Nmea/Config/PngFieldConfig.php → src/Core/Config/PngFieldConfig.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
declare(strict_types=1); | ||
namespace Nmea\Config; | ||
namespace Core\Config; | ||
|
||
class PngFieldConfig | ||
{ | ||
|
10 changes: 5 additions & 5 deletions
10
src/Nmea/Cron/AbstractCronWorker.php → src/Core/Cron/AbstractCronWorker.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/Nmea/Database/Database.php → src/Core/Database/Database.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace Nmea\Database; | ||
namespace Core\Database; | ||
|
||
use Exception; | ||
use PDO; | ||
|
2 changes: 1 addition & 1 deletion
2
src/Nmea/Database/DatabaseInterface.php → src/Core/Database/DatabaseInterface.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace Nmea\Database; | ||
namespace Core\Database; | ||
|
||
interface DatabaseInterface | ||
{ | ||
|
4 changes: 2 additions & 2 deletions
4
src/Nmea/Database/Mapper/AbstractMapper.php → src/Core/Database/Mapper/AbstractMapper.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
src/Nmea/Deamon/Bootstrap.php → src/Core/Deamon/Bootstrap.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace Nmea\Deamon; | ||
namespace Core\Deamon; | ||
|
||
use Exception; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/Nmea/Logger/AbstractLogger.php → src/Core/Logger/AbstractLogger.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace Nmea\Logger; | ||
namespace Core\Logger; | ||
|
||
use Stringable; | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
src/Nmea/Logger/AbstractLoggerTrait.php → src/Core/Logger/AbstractLoggerTrait.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace Nmea\Logger; | ||
namespace Core\Logger; | ||
|
||
use Stringable; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/Nmea/Logger/InvalidArgumentException.php → src/Core/Logger/InvalidArgumentException.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace Nmea\Logger; | ||
namespace Core\Logger; | ||
|
||
class LogLevel | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/Nmea/Logger/Logger/FileLogger.php → src/Core/Logger/Logger/FileLogger.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
src/Nmea/Logger/Logger/NullLogger.php → src/Core/Logger/Logger/NullLogger.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/Nmea/Logger/LoggerAwareInterface.php → src/Core/Logger/LoggerAwareInterface.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace Nmea\Logger; | ||
namespace Core\Logger; | ||
|
||
interface LoggerAwareInterface | ||
{ | ||
|
2 changes: 1 addition & 1 deletion
2
src/Nmea/Logger/LoggerInterface.php → src/Core/Logger/LoggerInterface.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace Nmea\Logger; | ||
namespace Core\Logger; | ||
|
||
interface LoggerInterface | ||
{ | ||
|
2 changes: 1 addition & 1 deletion
2
src/Nmea/Math/AbstractAngleRad.php → src/Core/Math/AbstractAngleRad.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace Nmea\Math; | ||
namespace Core\Math; | ||
|
||
abstract class AbstractAngleRad | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
<?php | ||
declare(strict_types=1); | ||
|
||
namespace Nmea\Math; | ||
namespace Core\Math; | ||
|
||
enum EnumRange:string | ||
{ | ||
|
Oops, something went wrong.