24 lines
220 B
PHP
24 lines
220 B
PHP
|
<?php
|
||
|
|
||
|
namespace TestNamespace;
|
||
|
|
||
|
class TestClass
|
||
|
{
|
||
|
public $testProperty;
|
||
|
|
||
|
public function testMethod($testParameter)
|
||
|
{
|
||
|
$testVariable = 123;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
trait TestTrait
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
interface TestInterface
|
||
|
{
|
||
|
|
||
|
}
|