Namespace and ClassPath rewrites
This commit is contained in:
13
Core/Elements/StaticView.class.php
Normal file
13
Core/Elements/StaticView.class.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
namespace Core\Elements;
|
||||
|
||||
abstract class StaticView {
|
||||
|
||||
public abstract function getCode();
|
||||
|
||||
public function __toString() {
|
||||
return $this->getCode();
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user