Automated formatting changes

This commit is contained in:
Formatter Bot 2022-04-19 21:42:22 +00:00
parent d62475dc69
commit 3e79dc03d9
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
{
try {
$sth = $this->connection->con->prepare($this->toSql());

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.