<?php
class Foo
{
    private $foo;
    private $bar;


    private $baz;
    public function test()
    {
        $someValue = 1;


        return $someValue;
    }
}
