コード例 #1
0
ファイル: ex.php プロジェクト: bartolini69/Laracast-Tutorials
<?php

require 'vendor/autoload.php';
//this autoloads everything
$registration = new Acme\RegisterUser();
$authController = new Acme\AuthController($registration);
$authController->register();
?>
 	
コード例 #2
0
<?php

$registration = new Acme\RegisterUser();
$authcontroller = new Acme\AuthController($registration);
$authcontroller->register();