Redesign prototype merge #18

Merged
MrPetovan merged 50 commits from feature/redesign-prototype into master 2017-05-06 08:10:18 +02:00
Showing only changes of commit 8cc61e0c68 - Show all commits

View file

@ -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();