The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
<?php
class MyClass
{
    public $var1 = 'value';


    public $var2 = 'value';

    public $var3 = 'value';

}//end class


interface MyInterface
{

    public $var1 = 'value';


    public $var2 = 'value';

    protected $var3 = 'value';
}//end interface


class MyClass
{


    public $var1 = 'value';

    private $var2 = 'value';


    protected $var3 = 'value';


}//end class



class MyClass
{
    public $var1 = 'value';
}//end class


interface MyInterface
{
    public $var1 = 'value';
    function myFunction();
}//end interface


class MyClass
{

    /**
     * The actions that this wizard step requires.
     *
     * @var   array
     * @since 4.0.0
     */
    protected $actions = array();


    /**
     * TRUE if this step should be performed after the asset is created.
     *
     * @var   boolean
     * @since 4.0.0
     */
    protected $postStep = FALSE;


}//end class

class MyClass
{
    /**
     * The actions that this wizard step requires.
     *
     * @var   array
     * @since 4.0.0
     */
    protected $actions = array();

}//end class

class MyClass
{

    /**
     * The actions that this wizard step requires.
     *
     * @var   array
     * @since 4.0.0
     */
    protected $actions = array();

    /**
     * The actions that this wizard step requires.
     *
     * @var   array
     * @since 4.0.0
     */
    protected $actions = array();

}//end class
?>