1: <?php
2:
3: namespace webfilesframework\codegeneration\general;
4:
5: /**
6: * description
7: *
8: * @author Sebastian Monzel < mail@sebastianmonzel.de >
9: * @since 0.1.7
10: */
11: abstract class MAbstractCodeItem
12: {
13: /**
14: * Specifies a method which has to be implemented in all subclasses
15: * to generate code for the given item.
16: * @return string
17: */
18: public abstract function generateCode();
19: }