XCMer / larry-four-generator

Larry Laravel Generator For Laravel Four
Other
131 stars 27 forks source link

fix str_replace #24

Closed Jaynarol closed 6 years ago

Jaynarol commented 10 years ago

I found a little bug.

class User extends Eloquent
{
    {{tableName}}
    {{primaryKey}}
    public $timestamps = true;
    protected $softDelete = true;
}

please change all

return str_replace("    {{...}}\n", '', $modelFileContents);

to

return str_replace("    {{...}}".PHP_EOL, '', $modelFileContents);

Thank for best project!!.