It is not recommended to use PHP's short opening tag <?, better use <?php, or <?= in case of outputting.
Short opening tags are disabled in PHP?s default configuration. In such a case,
all content of this file is output verbatim to the browser without being parsed,
or executed.
As a precaution to avoid these problems better use the long opening tag <?php.
Loading history...
2
namespace LaravelFreelancerNL\Aranguent\Console;
3
4
use Illuminate\Foundation\Console\ModelMakeCommand as IlluminateModelMakeCommand;
5
6
class ModelAranguentCommand extends IlluminateModelMakeCommand
Short opening tags are disabled in PHP?s default configuration. In such a case, all content of this file is output verbatim to the browser without being parsed, or executed.
As a precaution to avoid these problems better use the long opening tag
<?php
.