2018-10-17 17:03:32 +02:00
|
|
|
<?php
|
2019-02-08 23:41:03 +01:00
|
|
|
namespace Vimeo\Test\DummyProject;
|
2018-10-17 17:03:32 +02:00
|
|
|
|
|
|
|
class Bar
|
|
|
|
{
|
2019-10-15 18:09:08 +02:00
|
|
|
use SomeTrait;
|
|
|
|
|
2018-10-17 17:03:32 +02:00
|
|
|
/** @var string */
|
2023-10-19 14:00:20 +02:00
|
|
|
public $x;
|
2018-10-17 17:03:32 +02:00
|
|
|
|
|
|
|
public function __construct()
|
|
|
|
{
|
2023-10-19 14:00:20 +02:00
|
|
|
$this->x = 'hello';
|
2018-10-17 17:03:32 +02:00
|
|
|
}
|
|
|
|
}
|
2019-02-08 23:41:03 +01:00
|
|
|
|
2019-02-09 00:08:53 +01:00
|
|
|
/**
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
function someFunction()
|
2019-02-08 23:41:03 +01:00
|
|
|
{
|
2019-03-23 19:27:54 +01:00
|
|
|
echo 'here';
|
2019-02-08 23:41:03 +01:00
|
|
|
}
|