選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

TestController.php 235B

123456789101112131415161718
  1. <?php
  2. namespace App\Controller;
  3. use App\Dbo\TestDbo;
  4. /**
  5. * Created by PhpStorm.
  6. * User: robin
  7. * Date: 6/4/16
  8. * Time: 4:34 PM
  9. */
  10. class TestController
  11. {
  12. public function test(TestDbo $test2)
  13. {
  14. return $test2;
  15. }
  16. }