Skip to content

Instantly share code, notes, and snippets.

@coreymcmahon
Created April 3, 2015 04:07
Show Gist options
  • Save coreymcmahon/27053ce599de19cbc5f9 to your computer and use it in GitHub Desktop.
Save coreymcmahon/27053ce599de19cbc5f9 to your computer and use it in GitHub Desktop.
Moving top-level namespace files into app/ folder - http://slashnode.com/definitive-laravel-4-to-laravel-5-migration-guide/
<?php namespace Acme\Models;
/**
* In Laravel 4.2: app/src/Models/User.php
*
* In Laravel 5.x: app/Models/User.php
*/
class User
{
/** class code here */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment