1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25:
<?php
/**
* @author stev leibelt <artodeto@bazzline.net>
* @since 2014-05-03
*/
namespace Net\Bazzline\Component\CodeGenerator;
/**
* Interface IndentionAwareInterface
* @package Net\Bazzline\Component\CodeGenerator
*/
interface IndentionAwareInterface
{
/**
* @return null|Indention
*/
public function getIndention();
/**
* @param Indention $indention
* @return $this
*/
public function setIndention(Indention $indention);
}