Skip to content

Instantly share code, notes, and snippets.

@herloct
Last active March 14, 2017 18:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save herloct/86655823a94dfc6f565e9771219fbd46 to your computer and use it in GitHub Desktop.
Save herloct/86655823a94dfc6f565e9771219fbd46 to your computer and use it in GitHub Desktop.
<?php // lib/Database.php
namespace lib;
class Database
{
}
<?php // test.php
require __DIR__.'/lib/Tools.php';
$tools = new Tools();
<?php // lib/Tools.php
require __DIR__.'/Database.php';
namespace lib;
class Tools
{
function something()
{
$db = new Database();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment