<?php

declare(strict_types=1);

namespace Symplify\CodingStandard\ObjectCalisthenics\Tests\Rules\TooManyMethodsRule\Fixture;

final class ManyMethods
{
    public function fun()
    {
    }

    public function go()
    {
    }

    public function throw()
    {
    }

    public function thanks()
    {
    }
}
