for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace OCA\Calendar\Service;
class UserService {
private $userManager;
public function __construct($userManager){
$this->userManager = $userManager;
}
public function create($userId, $password) {
return $this->userManager->create($userId, $password);