swaggest/php-code-builder

View on GitHub
src/PhpAnyType.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Swaggest\PhpCodeBuilder;

interface PhpAnyType
{
    /**
     * @return string
     */
    public function renderArgumentType();

    /**
     * @return string
     */
    public function renderPhpDocType();


}