blob: 3cd7460a24487e2b543638eab577cc71f853aa96 [file]
<?php
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
namespace Libs\Bar;
include 'Libs/Bar/IBuz.php';
use Libs\Bar\IBuz as Gogo;
/**
* Description of Buz
*
* @author cesilko
*/
class Buz implements Gogo {
//put your code here
public function barMoje() {
return "Do something";
}
function printMe() {
echo " ja jsem z Bar";
}
}
?>