Initial commit
This commit is contained in:
22
vendor/laravel/framework/src/Illuminate/Console/Contracts/NewLineAware.php
vendored
Normal file
22
vendor/laravel/framework/src/Illuminate/Console/Contracts/NewLineAware.php
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
namespace Illuminate\Console\Contracts;
|
||||
|
||||
interface NewLineAware
|
||||
{
|
||||
/**
|
||||
* How many trailing newlines were written.
|
||||
*
|
||||
* @return int
|
||||
*/
|
||||
public function newLinesWritten();
|
||||
|
||||
/**
|
||||
* Whether a newline has already been written.
|
||||
*
|
||||
* @return bool
|
||||
*
|
||||
* @deprecated use newLinesWritten
|
||||
*/
|
||||
public function newLineWritten();
|
||||
}
|
||||
Reference in New Issue
Block a user