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

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