View file vendor/doctrine/deprecations/test_fixtures/vendor/doctrine/foo/Baz.php

File size: 176B
<?php

declare(strict_types=1);

namespace Doctrine\Foo;

class Baz
{
    public function usingOldFunc(): void
    {
        $bar = new Bar();
        $bar->oldFunc();
    }
}