Skip to content

Instantly share code, notes, and snippets.

@ojhaujjwal
Created October 8, 2017 03:17
Show Gist options
  • Save ojhaujjwal/7de7d9d8e0457aa4bee5e517c77fbc11 to your computer and use it in GitHub Desktop.
Save ojhaujjwal/7de7d9d8e0457aa4bee5e517c77fbc11 to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Controllers;
use App\User;
use App\Http\Controllers\Controller;
class MyController extends Controller
{
protected $myService;
public function __construct(\My\Service $myService)
{
$this->myService = $myService;
}
// .. methods here
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment