2016-09-06 10:54:34 +00:00
|
|
|
<?php
|
|
|
|
|
2016-10-10 13:06:02 +00:00
|
|
|
namespace TestNamespace;
|
2016-09-06 10:54:34 +00:00
|
|
|
|
2016-10-10 13:06:02 +00:00
|
|
|
use SomeNamespace\Goo;
|
2016-09-06 10:54:34 +00:00
|
|
|
|
|
|
|
|
2016-10-10 13:06:02 +00:00
|
|
|
class TestClass
|
2016-09-06 10:54:34 +00:00
|
|
|
{
|
2016-10-10 13:06:02 +00:00
|
|
|
public $testProperty;
|
2016-09-06 10:54:34 +00:00
|
|
|
|
|
|
|
public function testMethod($testParameter)
|
|
|
|
{
|
|
|
|
$testVariable = 123;
|
|
|
|
|
2016-10-24 17:35:37 +00:00
|
|
|
if (empty($testParameter)){
|
2016-09-06 10:54:34 +00:00
|
|
|
echo 'Empty';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|