franzliedke / studio

A workbench for developing Composer packages.
MIT License
1.14k stars 73 forks source link

Studio package autoload.php require once got printed behind return statement #13

Closed maartenscholz closed 9 years ago

maartenscholz commented 9 years ago

In my main projects autoload.php the generated require of my studio package autoload.php gets printed behind the return statement, rendering it moot.

return ComposerAutoloaderInite73ad39f6603d8c0d4afc6ca2622bde4::getLoader();

// @generated by Composer Studio (https://github.com/franzliedke/studio)
require_once __DIR__ . '/../laravel-queue/vendor/autoload.php';

I had to manually move it above the return statement for it to work but each composer dump resets that.

franzliedke commented 9 years ago

Wow, ahem, way to overlook something. Thanks for the report, will fix it immediately.

franzliedke commented 9 years ago

Okay, this is part of v0.9.5 which was just released. =)

maartenscholz commented 9 years ago

Fast :) thanks!