Skip to content

Instantly share code, notes, and snippets.

@ludndev
Created August 20, 2020 08:23
Show Gist options
  • Save ludndev/4b9e6a059c627d3bc4c94aa4764e84f8 to your computer and use it in GitHub Desktop.
Save ludndev/4b9e6a059c627d3bc4c94aa4764e84f8 to your computer and use it in GitHub Desktop.
```php
class Test
{
public $bar = "World";
public function hello() {
return [
"Hello {$this->bar}"
];
}
}
$test = new Test();
// it's work
echo $test->hello();
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment