21 lines
288 B
PHP
21 lines
288 B
PHP
|
<?php
|
||
|
|
||
|
namespace TestNamespace;
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
class TestClass
|
||
|
{
|
||
|
public $testProperty;
|
||
|
|
||
|
public function testMethod($testParameter)
|
||
|
{
|
||
|
$testVariable = 123;
|
||
|
|
||
|
if ( empty($testParameter)){
|
||
|
echo 'Empty';
|
||
|
}
|
||
|
}
|
||
|
}
|