gdbots/pbjc-php

View on GitHub
src/Type/AbstractStringType.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Gdbots\Pbjc\Type;

abstract class AbstractStringType extends AbstractType
{
    /**
     * {@inheritdoc}
     */
    public function isString()
    {
        return true;
    }
}