@@ -2,6 +2,6 @@ |
||
2 | 2 | |
3 | 3 | // autoload.php @generated by Composer |
4 | 4 | |
5 | -require_once __DIR__ . '/composer/autoload_real.php'; |
|
5 | +require_once __DIR__.'/composer/autoload_real.php'; |
|
6 | 6 | |
7 | 7 | return ComposerAutoloaderInitFiles_Versions::getLoader(); |
@@ -6,5 +6,5 @@ |
||
6 | 6 | $baseDir = $vendorDir; |
7 | 7 | |
8 | 8 | return array( |
9 | - 'OCA\\Files_Versions\\' => array($baseDir . '/../lib'), |
|
9 | + 'OCA\\Files_Versions\\' => array($baseDir.'/../lib'), |
|
10 | 10 | ); |
@@ -37,13 +37,13 @@ discard block |
||
37 | 37 | |
38 | 38 | public function addResultSet(SearchResultType $type, array $matches, array $exactMatches = null) { |
39 | 39 | $type = $type->getLabel(); |
40 | - if(!isset($this->result[$type])) { |
|
40 | + if (!isset($this->result[$type])) { |
|
41 | 41 | $this->result[$type] = []; |
42 | 42 | $this->result['exact'][$type] = []; |
43 | 43 | } |
44 | 44 | |
45 | 45 | $this->result[$type] = array_merge($this->result[$type], $matches); |
46 | - if(is_array($exactMatches)) { |
|
46 | + if (is_array($exactMatches)) { |
|
47 | 47 | $this->result['exact'][$type] = array_merge($this->result['exact'][$type], $exactMatches); |
48 | 48 | } |
49 | 49 | } |
@@ -58,12 +58,12 @@ discard block |
||
58 | 58 | |
59 | 59 | public function hasResult(SearchResultType $type, $collaboratorId) { |
60 | 60 | $type = $type->getLabel(); |
61 | - if(!isset($this->result[$type])) { |
|
61 | + if (!isset($this->result[$type])) { |
|
62 | 62 | return false; |
63 | 63 | } |
64 | 64 | |
65 | 65 | $resultArrays = [$this->result['exact'][$type], $this->result[$type]]; |
66 | - foreach($resultArrays as $resultArray) { |
|
66 | + foreach ($resultArrays as $resultArray) { |
|
67 | 67 | foreach ($resultArray as $result) { |
68 | 68 | if ($result['value']['shareWith'] === $collaboratorId) { |
69 | 69 | return true; |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | public function unsetResult(SearchResultType $type) { |
82 | 82 | $type = $type->getLabel(); |
83 | 83 | $this->result[$type] = []; |
84 | - if(isset($this->result['exact'][$type])) { |
|
84 | + if (isset($this->result['exact'][$type])) { |
|
85 | 85 | $this->result['exact'][$type] = []; |
86 | 86 | } |
87 | 87 | } |
@@ -37,7 +37,7 @@ |
||
37 | 37 | public function extend(array $settings) { |
38 | 38 | $appConfig = json_decode($settings['array']['oc_appconfig'], true); |
39 | 39 | |
40 | - $value = (int)$this->c->getConfig()->getAppValue('comments', 'maxAutoCompleteResults', 10); |
|
40 | + $value = (int) $this->c->getConfig()->getAppValue('comments', 'maxAutoCompleteResults', 10); |
|
41 | 41 | $appConfig['comments']['maxAutoCompleteResults'] = $value; |
42 | 42 | |
43 | 43 | $settings['array']['oc_appconfig'] = json_encode($appConfig); |
@@ -58,13 +58,13 @@ discard block |
||
58 | 58 | $respondToActions = $plugin->respondToActions(); |
59 | 59 | $this->respondToActions |= $respondToActions; |
60 | 60 | |
61 | - foreach($this->which as $action => $v) { |
|
62 | - if (is_int($action) && (bool)($respondToActions & $action)) { |
|
61 | + foreach ($this->which as $action => $v) { |
|
62 | + if (is_int($action) && (bool) ($respondToActions & $action)) { |
|
63 | 63 | $this->which[$action] = $plugin; |
64 | 64 | \OC::$server->getLogger()->debug("Registered action ".$action." to plugin ".get_class($plugin), ['app' => 'user_ldap']); |
65 | 65 | } |
66 | 66 | } |
67 | - if (method_exists($plugin,'deleteUser')) { |
|
67 | + if (method_exists($plugin, 'deleteUser')) { |
|
68 | 68 | $this->which['deleteUser'] = $plugin; |
69 | 69 | \OC::$server->getLogger()->debug("Registered action deleteUser to plugin ".get_class($plugin), ['app' => 'user_ldap']); |
70 | 70 | } |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | $plugin = $this->which[Backend::CREATE_USER]; |
92 | 92 | |
93 | 93 | if ($plugin) { |
94 | - return $plugin->createUser($username,$password); |
|
94 | + return $plugin->createUser($username, $password); |
|
95 | 95 | } |
96 | 96 | throw new \Exception('No plugin implements createUser in this LDAP Backend.'); |
97 | 97 | } |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | $plugin = $this->which[Backend::SET_PASSWORD]; |
108 | 108 | |
109 | 109 | if ($plugin) { |
110 | - return $plugin->setPassword($uid,$password); |
|
110 | + return $plugin->setPassword($uid, $password); |
|
111 | 111 | } |
112 | 112 | throw new \Exception('No plugin implements setPassword in this LDAP Backend.'); |
113 | 113 | } |
@@ -53,8 +53,8 @@ discard block |
||
53 | 53 | $respondToActions = $plugin->respondToActions(); |
54 | 54 | $this->respondToActions |= $respondToActions; |
55 | 55 | |
56 | - foreach($this->which as $action => $v) { |
|
57 | - if ((bool)($respondToActions & $action)) { |
|
56 | + foreach ($this->which as $action => $v) { |
|
57 | + if ((bool) ($respondToActions & $action)) { |
|
58 | 58 | $this->which[$action] = $plugin; |
59 | 59 | \OC::$server->getLogger()->debug("Registered action ".$action." to plugin ".get_class($plugin), ['app' => 'user_ldap']); |
60 | 60 | } |
@@ -147,7 +147,7 @@ discard block |
||
147 | 147 | $plugin = $this->which[GroupInterface::COUNT_USERS]; |
148 | 148 | |
149 | 149 | if ($plugin) { |
150 | - return $plugin->countUsersInGroup($gid,$search); |
|
150 | + return $plugin->countUsersInGroup($gid, $search); |
|
151 | 151 | } |
152 | 152 | throw new \Exception('No plugin implements countUsersInGroup in this LDAP Backend.'); |
153 | 153 | } |
@@ -163,7 +163,7 @@ |
||
163 | 163 | * @return array |
164 | 164 | */ |
165 | 165 | function getGroupMembership($principal) { |
166 | - list($prefix, ) = \Sabre\Uri\split($principal); |
|
166 | + list($prefix,) = \Sabre\Uri\split($principal); |
|
167 | 167 | |
168 | 168 | if ($prefix === 'principals/system') { |
169 | 169 | $principal = $this->getPrincipalByPath($principal); |
@@ -30,12 +30,12 @@ discard block |
||
30 | 30 | /** |
31 | 31 | * @var ICalendar[] holds all registered calendars |
32 | 32 | */ |
33 | - private $calendars=[]; |
|
33 | + private $calendars = []; |
|
34 | 34 | |
35 | 35 | /** |
36 | 36 | * @var \Closure[] to call to load/register calendar providers |
37 | 37 | */ |
38 | - private $calendarLoaders=[]; |
|
38 | + private $calendarLoaders = []; |
|
39 | 39 | |
40 | 40 | /** |
41 | 41 | * This function is used to search and find objects within the user's calendars. |
@@ -50,12 +50,12 @@ discard block |
||
50 | 50 | * @return array an array of events/journals/todos which are arrays of arrays of key-value-pairs |
51 | 51 | * @since 13.0.0 |
52 | 52 | */ |
53 | - public function search($pattern, array $searchProperties=[], array $options=[], $limit=null, $offset=null) { |
|
53 | + public function search($pattern, array $searchProperties = [], array $options = [], $limit = null, $offset = null) { |
|
54 | 54 | $this->loadCalendars(); |
55 | 55 | $result = []; |
56 | - foreach($this->calendars as $calendar) { |
|
56 | + foreach ($this->calendars as $calendar) { |
|
57 | 57 | $r = $calendar->search($pattern, $searchProperties, $options, $limit, $offset); |
58 | - foreach($r as $o) { |
|
58 | + foreach ($r as $o) { |
|
59 | 59 | $o['calendar-key'] = $calendar->getKey(); |
60 | 60 | $result[] = $o; |
61 | 61 | } |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | * loads all calendars |
133 | 133 | */ |
134 | 134 | private function loadCalendars() { |
135 | - foreach($this->calendarLoaders as $callable) { |
|
135 | + foreach ($this->calendarLoaders as $callable) { |
|
136 | 136 | $callable($this); |
137 | 137 | } |
138 | 138 | $this->calendarLoaders = []; |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | * @return array an array of events/journals/todos which are arrays of key-value-pairs |
88 | 88 | * @since 13.0.0 |
89 | 89 | */ |
90 | - public function search($pattern, array $searchProperties=[], array $options=[], $limit=null, $offset=null) { |
|
90 | + public function search($pattern, array $searchProperties = [], array $options = [], $limit = null, $offset = null) { |
|
91 | 91 | return $this->backend->search($this->calendarInfo, $pattern, |
92 | 92 | $searchProperties, $options, $limit, $offset); |
93 | 93 | } |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | $permissions = $this->calendar->getACL(); |
101 | 101 | $result = 0; |
102 | 102 | foreach ($permissions as $permission) { |
103 | - switch($permission['privilege']) { |
|
103 | + switch ($permission['privilege']) { |
|
104 | 104 | case '{DAV:}read': |
105 | 105 | $result |= Constants::PERMISSION_READ; |
106 | 106 | break; |