Created
April 3, 2015 04:07
-
-
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/
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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