TrackManiaControl/application/core/Libs/FML/Types/NewLineable.php
Steffen Schröder c8d599189c FML Update
2014-06-21 03:18:21 +02:00

22 lines
524 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|static
*/
public function setAutoNewLine($autoNewLine);
}