Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Cat.php */
- <?php
- namespace MyCompany\Animals;
- class Cat
- {
- function __construct() {
- echo 'Cat created!';
- }
- }
- /* Composer.json */
- {
- "autoload": {
- "ps-4": {
- "MyCompany\\": "app/MyCompany"
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement