TrackManiaControl/application/core/Libs/FML/Types/NewLineable.php
2014-05-20 15:44:45 +02:00

22 lines
517 B
PHP

<?php
namespace FML\Types;
/**
* Interface for Elements with AutoNewLine Attribute
*
* @author steeffeen <mail@steeffeen.com>
* @copyright FancyManiaLinks Copyright © 2014 Steffen Schröder
* @license http://www.gnu.org/licenses/ GNU General Public License, Version 3
*/
interface NewLineable {
/**
* Set Auto New Line
*
* @param bool $autoNewLine Whether the Control should insert New Lines automatically
* @return \FML\Types\NewLineable
*/
public function setAutoNewLine($autoNewLine);
}