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

20 lines
318 B
PHP
Raw Normal View History

<?php
namespace FML\Types;
/**
2013-12-09 13:05:05 +01:00
* Interface for elements with AutoNewLine attribute
*
* @author steeffeen
*/
interface NewLineable {
/**
2013-12-31 02:55:19 +01:00
* Set Auto New Line
*
2013-12-31 02:55:19 +01:00
* @param bool $autoNewLine
* If the Control should insert New Lines automatically
*/
public function setAutoNewLine($autoNewLine);
}