for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Leaditin\Code\Generator;
/**
* @package Leaditin\Code
* @author Igor Vuckovic <[email protected]>
* @license MIT
*/
class InterfaceGenerator extends ClassAwareGenerator
{
* @inheritDoc
protected function scope(): string
return 'interface';
}
protected function generateScope(): string
return $this->generateLine('interface ' . $this->name . $this->generateInheritance()). $this->generateLine('{');
protected function generateProperties(): string
return '';