Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Feb 2, 2024
1 parent 7f610a4 commit c89b81c
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
3 changes: 1 addition & 2 deletions src/Command/Database/Insert.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,8 @@ public function execute(): void
$field,
$this->mapper === null ? $insertID : $this->mapper->cast([$field => $insertID])[$field],
);
} else {
// todo multiple returning
}
// todo multiple returning
} else {
$insertID = $insert->run();

Expand Down
1 change: 0 additions & 1 deletion src/SchemaInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ interface SchemaInterface
public const GENERATED_PHP_INSERT = 2; // generated by PHP code on insert like uuid
public const GENERATED_PHP_UPDATE = 4; // generated by PHP code on update like time


/**
* Return all roles defined within the schema.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

namespace Cycle\ORM\Tests\Functional\Driver\Common\Integration\Case321;

use Cycle\ORM\Select;
use Cycle\ORM\Tests\Functional\Driver\Common\BaseTest;
use Cycle\ORM\Tests\Functional\Driver\Common\Integration\IntegrationTestTrait;
use Cycle\ORM\Tests\Traits\TableTrait;
Expand Down

0 comments on commit c89b81c

Please sign in to comment.