JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "NewLineAware.php"

Full Path: /home/u743136113/domains/arvi.seezify.com/public_html/vendor/laravel/framework/src/Illuminate/Console/Contracts/NewLineAware.php
File size: 383 bytes
MIME-type: text/x-php
Charset: utf-8

<?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();
}