mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-28 04:58:46 +02:00
16 lines
133 B
PHP
16 lines
133 B
PHP
<?php
|
|
|
|
/*
|
|
* foo
|
|
*/
|
|
|
|
namespace Namespaced;
|
|
|
|
class WithDirMagic
|
|
{
|
|
public function getDir()
|
|
{
|
|
return __DIR__;
|
|
}
|
|
}
|