Merge branch 'develop' of https://github.com/Orange-Management/phpOMS into develop

This commit is contained in:
Dennis Eichhorn 2022-04-24 23:13:52 +02:00
commit 35d13cd7db
4 changed files with 2 additions and 8 deletions

View File

@ -14,8 +14,6 @@ declare(strict_types=1);
namespace phpOMS\Algorithm\PathFinding;
use phpOMS\Stdlib\Base\HeapItemInterface;
/**
* Node on grid.
*

View File

@ -14,7 +14,6 @@ declare(strict_types=1);
namespace phpOMS\DataStorage\Database\Query;
use PDOStatement;
use phpOMS\Algorithm\Graph\DependencyResolver;
use phpOMS\Contract\SerializableInterface;
use phpOMS\DataStorage\Database\BuilderAbstract;
@ -1389,11 +1388,11 @@ class Builder extends BuilderAbstract
/**
* Execute query.
*
* @return ?PDOStatement
* @return ?\PDOStatement
*
* @since 1.0.0
*/
public function execute() : ?PDOStatement
public function execute() : ?\PDOStatement
{
$sth = null;

View File

@ -152,7 +152,6 @@ abstract class StatusAbstract
/** @var Directory|File $child */
foreach ($directories as $child) {
if ($child instanceof Directory) {
/** @var File $file */
foreach ($child as $file) {
if (!\is_dir(__DIR__ . '/../../' . $child->getName() . '/' . \basename($file->getName(), '.php'))
@ -223,7 +222,6 @@ abstract class StatusAbstract
/** @var Directory|File $child */
foreach ($directories as $child) {
if ($child instanceof Directory) {
/** @var File $file */
foreach ($child as $file) {
if (!\is_dir(__DIR__ . '/../../' . $child->getName() . '/' . \basename($file->getName(), '.php'))

View File

@ -15,7 +15,6 @@ declare(strict_types=1);
namespace phpOMS\Views;
use phpOMS\Contract\RenderableInterface;
use phpOMS\System\File\PathException;
/**
* View Abstract.