original-brownbear/php-transpiler

View on GitHub
src/PhpTranspiler/Framework/SourceElements/PhpMethod.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace PhpTranspiler\Framework\SourceElements;


class PhpMethod extends PhpElement
{
    public function propertyAccess()
    {
        return new PropertyAccess($this);
    }
}