Redesign prototype merge #18
1 changed files with 6 additions and 0 deletions
|
@ -1,8 +1,14 @@
|
|||
<?php
|
||||
|
||||
//Add the auto loader. This makes sure that we can find the files we need for a class.
|
||||
require_once('autoload.php');
|
||||
|
||||
//This says, we want Hello to mean Friendica\Directory\Example\Hello.
|
||||
//It's a shortcut.
|
||||
use Friendica\Directory\Example\Hello;
|
||||
|
||||
//Here we use the shortcut and create a new Hello object.
|
||||
$instance = new Hello();
|
||||
|
||||
//Let the Hello object call
|
||||
echo $instance->sayHello();
|
||||
|
|
Loading…
Reference in a new issue