📋 Commit iniziale con: - ✅ Documentazione unificata in docs/ - ✅ Codice Laravel in netgescon-laravel/ - ✅ Script automazione in scripts/ - ✅ Configurazione sync rsync - ✅ Struttura organizzata e pulita 🔄 Versione: 2025.07.19-1644 🎯 Sistema pronto per Git distribuito
23 lines
383 B
PHP
23 lines
383 B
PHP
<?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();
|
|
}
|