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