Skip to content

Instantly share code, notes, and snippets.

@flavius
Created November 22, 2014 09:36
Show Gist options
  • Save flavius/b66b218192fbedeac312 to your computer and use it in GitHub Desktop.
Save flavius/b66b218192fbedeac312 to your computer and use it in GitHub Desktop.
<?php
namespace application\Common;
class Bar extends \library\Common\Bar {
public function __construct() {
echo __METHOD__, PHP_EOL;
parent::__construct();
}
}
<?php
$loader = require_once __DIR__.'/vendor/autoload.php';
$bar = new \Common\Bar;
<?php
namespace library\Common;
class Bar {
public function __construct() {
echo __METHOD__, PHP_EOL;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment