7 lines
142 B
PHP
7 lines
142 B
PHP
<?php
|
|
namespace Opencart\System\Library\Extension\OcThemeExample;
|
|
class MyClass {
|
|
public function test() {
|
|
echo 'I have been called!';
|
|
}
|
|
} |