TrackManiaControl/application/core/Libs/FML/Types/NewLineable.php

20 lines
346 B
PHP
Raw Normal View History

<?php
namespace FML\Types;
/**
2014-01-12 00:51:46 +01:00
* Interface for Elements with AutoNewLine Attribute
*
* @author steeffeen
*/
interface NewLineable {
/**
2013-12-31 02:55:19 +01:00
* Set Auto New Line
*
2014-01-12 00:51:46 +01:00
* @param bool $autoNewLine Whether the Control should insert New Lines automatically
2014-01-21 20:30:40 +01:00
* @return \FML\Types\NewLineable
*/
public function setAutoNewLine($autoNewLine);
}