Skip to content

Commit

Permalink
Merge branch 'release/v0.2.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
betterthanclay committed Aug 22, 2024
2 parents ca09aaf + e23620c commit 0dd5370
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## v0.2.4 (2024-08-21)
* Updated dependencies
* Updated Veneer dependency and Stub
* Removed unneeded LazyLoad binding attribute

## v0.2.3 (2024-07-17)
* Updated Veneer dependency

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"decodelabs/guidance": "^0.1.7",
"decodelabs/slingshot": "^0.1.4",
"decodelabs/stash": "^0.5.0",
"decodelabs/veneer": "^0.11.1",
"decodelabs/veneer": "^0.11.6",

"doctrine/orm": "^3",
"doctrine/dbal": "^4",
Expand All @@ -25,7 +25,7 @@
"require-dev": {
"decodelabs/cipher": "^0.1.1",
"decodelabs/clip": "^0.3.10",
"decodelabs/genesis": "^0.8.3",
"decodelabs/genesis": "^0.9",
"decodelabs/phpstan-decodelabs": "^0.6.7",

"martin-georgiev/postgresql-for-doctrine": "^2.1",
Expand Down
4 changes: 2 additions & 2 deletions src/Clip/Task/Doctrine.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

class Doctrine implements Task
{
public const COMMANDS = [];
protected const Commands = [];

public function execute(): bool
{
Expand All @@ -48,7 +48,7 @@ protected function runRoot(): void

ConsoleRunner::run(
new SingleManagerProvider($entityManager),
self::COMMANDS
self::Commands
);
}

Expand Down
2 changes: 0 additions & 2 deletions src/Indoctrination/Context.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
use DecodeLabs\Slingshot;
use DecodeLabs\Stash;
use DecodeLabs\Veneer;
use DecodeLabs\Veneer\LazyLoad;
use Doctrine\DBAL\Connection;
use Doctrine\DBAL\DriverManager;
use Doctrine\DBAL\Schema\AbstractAsset;
Expand All @@ -29,7 +28,6 @@
use Doctrine\ORM\EntityManager;
use Doctrine\ORM\ORMSetup;

#[LazyLoad]
class Context
{
protected static bool $init = false;
Expand Down
4 changes: 2 additions & 2 deletions stubs/DecodeLabs/Indoctrination.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ class Indoctrination implements Proxy
{
use ProxyTrait;

const VENEER = 'DecodeLabs\\Indoctrination';
const VENEER_TARGET = Inst::class;
const Veneer = 'DecodeLabs\\Indoctrination';
const VeneerTarget = Inst::class;

public static Inst $instance;

Expand Down

0 comments on commit 0dd5370

Please sign in to comment.