Skip to content

Commit

Permalink
Correct location to autoload.php in examples
Browse files Browse the repository at this point in the history
  • Loading branch information
tlmcclatchey committed Feb 17, 2024
1 parent 6812f58 commit 3c4a0ed
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion examples/call.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

require_once 'vendor/autoload.php';
require_once '../vendor/autoload.php';

use CommonPHP\DependencyInjection\DependencyInjector;

Expand Down
2 changes: 1 addition & 1 deletion examples/instantiate.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

require_once 'vendor/autoload.php';
require_once '../vendor/autoload.php';

use CommonPHP\DependencyInjection\DependencyInjector;

Expand Down
2 changes: 1 addition & 1 deletion examples/invoke.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

require_once 'vendor/autoload.php';
require_once '../vendor/autoload.php';

use CommonPHP\DependencyInjection\DependencyInjector;

Expand Down
2 changes: 1 addition & 1 deletion examples/lookup-hooks.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

require_once 'vendor/autoload.php';
require_once '../vendor/autoload.php';

use CommonPHP\DependencyInjection\DependencyInjector;
use CommonPHP\DependencyInjection\Support\ValueFinder;
Expand Down
2 changes: 1 addition & 1 deletion examples/populate.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

require_once 'vendor/autoload.php';
require_once '../vendor/autoload.php';

use CommonPHP\DependencyInjection\DependencyInjector;

Expand Down

0 comments on commit 3c4a0ed

Please sign in to comment.