Fix constructor indentation

This commit is contained in:
Julius Haertl
2017-01-18 13:38:12 +01:00
parent 736c6ced10
commit eb02f267a5
5 changed files with 7 additions and 30 deletions

View File

@@ -24,21 +24,16 @@
namespace OCA\Deck\Controller;
use OCA\Deck\Service\LabelService;
use OCP\IRequest;
use OCP\AppFramework\Controller;
class LabelController extends Controller {
private $userId;
private $labelService;
public function __construct($appName,
IRequest $request,
LabelService $labelService,
$userId){
public function __construct($appName, IRequest $request, LabelService $labelService){
parent::__construct($appName, $request);
$this->userId = $userId;
$this->labelService = $labelService;
}