@@ -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_Sharing::getLoader(); |
@@ -6,5 +6,5 @@ |
||
6 | 6 | $baseDir = $vendorDir; |
7 | 7 | |
8 | 8 | return array( |
9 | - 'OCA\\FederatedFileSharing\\' => array($baseDir . '/../lib'), |
|
9 | + 'OCA\\FederatedFileSharing\\' => array($baseDir.'/../lib'), |
|
10 | 10 | ); |
@@ -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 ComposerAutoloaderInitFederatedFileSharing::getLoader(); |
@@ -6,5 +6,5 @@ |
||
6 | 6 | $baseDir = $vendorDir; |
7 | 7 | |
8 | 8 | return array( |
9 | - 'OCA\\Federation\\' => array($baseDir . '/../lib'), |
|
9 | + 'OCA\\Federation\\' => array($baseDir.'/../lib'), |
|
10 | 10 | ); |
@@ -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 ComposerAutoloaderInitFederation::getLoader(); |
@@ -67,7 +67,7 @@ |
||
67 | 67 | * @return array an array of events/journals/todos which are arrays of arrays of key-value-pairs |
68 | 68 | * @since 13.0.0 |
69 | 69 | */ |
70 | - public function search($pattern, array $searchProperties=[], array $options=[], $limit=null, $offset=null); |
|
70 | + public function search($pattern, array $searchProperties = [], array $options = [], $limit = null, $offset = null); |
|
71 | 71 | |
72 | 72 | /** |
73 | 73 | * Check if calendars are available |
@@ -55,67 +55,67 @@ |
||
55 | 55 | */ |
56 | 56 | interface IManager { |
57 | 57 | |
58 | - /** |
|
59 | - * This function is used to search and find objects within the user's calendars. |
|
60 | - * In case $pattern is empty all events/journals/todos will be returned. |
|
61 | - * |
|
62 | - * @param string $pattern which should match within the $searchProperties |
|
63 | - * @param array $searchProperties defines the properties within the query pattern should match |
|
64 | - * @param array $options - optional parameters: |
|
65 | - * ['timerange' => ['start' => new DateTime(...), 'end' => new DateTime(...)]] |
|
66 | - * @param integer|null $limit - limit number of search results |
|
67 | - * @param integer|null $offset - offset for paging of search results |
|
68 | - * @return array an array of events/journals/todos which are arrays of arrays of key-value-pairs |
|
69 | - * @since 13.0.0 |
|
70 | - */ |
|
71 | - public function search($pattern, array $searchProperties=[], array $options=[], $limit=null, $offset=null); |
|
58 | + /** |
|
59 | + * This function is used to search and find objects within the user's calendars. |
|
60 | + * In case $pattern is empty all events/journals/todos will be returned. |
|
61 | + * |
|
62 | + * @param string $pattern which should match within the $searchProperties |
|
63 | + * @param array $searchProperties defines the properties within the query pattern should match |
|
64 | + * @param array $options - optional parameters: |
|
65 | + * ['timerange' => ['start' => new DateTime(...), 'end' => new DateTime(...)]] |
|
66 | + * @param integer|null $limit - limit number of search results |
|
67 | + * @param integer|null $offset - offset for paging of search results |
|
68 | + * @return array an array of events/journals/todos which are arrays of arrays of key-value-pairs |
|
69 | + * @since 13.0.0 |
|
70 | + */ |
|
71 | + public function search($pattern, array $searchProperties=[], array $options=[], $limit=null, $offset=null); |
|
72 | 72 | |
73 | - /** |
|
74 | - * Check if calendars are available |
|
75 | - * |
|
76 | - * @return bool true if enabled, false if not |
|
77 | - * @since 13.0.0 |
|
78 | - */ |
|
79 | - public function isEnabled(); |
|
73 | + /** |
|
74 | + * Check if calendars are available |
|
75 | + * |
|
76 | + * @return bool true if enabled, false if not |
|
77 | + * @since 13.0.0 |
|
78 | + */ |
|
79 | + public function isEnabled(); |
|
80 | 80 | |
81 | - /** |
|
82 | - * Registers a calendar |
|
83 | - * |
|
84 | - * @param ICalendar $calendar |
|
85 | - * @return void |
|
86 | - * @since 13.0.0 |
|
87 | - */ |
|
88 | - public function registerCalendar(ICalendar $calendar); |
|
81 | + /** |
|
82 | + * Registers a calendar |
|
83 | + * |
|
84 | + * @param ICalendar $calendar |
|
85 | + * @return void |
|
86 | + * @since 13.0.0 |
|
87 | + */ |
|
88 | + public function registerCalendar(ICalendar $calendar); |
|
89 | 89 | |
90 | - /** |
|
91 | - * Unregisters a calendar |
|
92 | - * |
|
93 | - * @param ICalendar $calendar |
|
94 | - * @return void |
|
95 | - * @since 13.0.0 |
|
96 | - */ |
|
97 | - public function unregisterCalendar(ICalendar $calendar); |
|
90 | + /** |
|
91 | + * Unregisters a calendar |
|
92 | + * |
|
93 | + * @param ICalendar $calendar |
|
94 | + * @return void |
|
95 | + * @since 13.0.0 |
|
96 | + */ |
|
97 | + public function unregisterCalendar(ICalendar $calendar); |
|
98 | 98 | |
99 | - /** |
|
100 | - * In order to improve lazy loading a closure can be registered which will be called in case |
|
101 | - * calendars are actually requested |
|
102 | - * |
|
103 | - * @param \Closure $callable |
|
104 | - * @return void |
|
105 | - * @since 13.0.0 |
|
106 | - */ |
|
107 | - public function register(\Closure $callable); |
|
99 | + /** |
|
100 | + * In order to improve lazy loading a closure can be registered which will be called in case |
|
101 | + * calendars are actually requested |
|
102 | + * |
|
103 | + * @param \Closure $callable |
|
104 | + * @return void |
|
105 | + * @since 13.0.0 |
|
106 | + */ |
|
107 | + public function register(\Closure $callable); |
|
108 | 108 | |
109 | - /** |
|
110 | - * @return ICalendar[] |
|
111 | - * @since 13.0.0 |
|
112 | - */ |
|
113 | - public function getCalendars(); |
|
109 | + /** |
|
110 | + * @return ICalendar[] |
|
111 | + * @since 13.0.0 |
|
112 | + */ |
|
113 | + public function getCalendars(); |
|
114 | 114 | |
115 | - /** |
|
116 | - * removes all registered calendar instances |
|
117 | - * @return void |
|
118 | - * @since 13.0.0 |
|
119 | - */ |
|
120 | - public function clear(); |
|
115 | + /** |
|
116 | + * removes all registered calendar instances |
|
117 | + * @return void |
|
118 | + * @since 13.0.0 |
|
119 | + */ |
|
120 | + public function clear(); |
|
121 | 121 | } |
@@ -54,7 +54,7 @@ |
||
54 | 54 | * @return array an array of events/journals/todos which are arrays of key-value-pairs |
55 | 55 | * @since 13.0.0 |
56 | 56 | */ |
57 | - public function search($pattern, array $searchProperties=[], array $options=[], $limit=null, $offset=null); |
|
57 | + public function search($pattern, array $searchProperties = [], array $options = [], $limit = null, $offset = null); |
|
58 | 58 | |
59 | 59 | /** |
60 | 60 | * @return integer build up using \OCP\Constants |
@@ -31,41 +31,41 @@ |
||
31 | 31 | */ |
32 | 32 | interface ICalendar { |
33 | 33 | |
34 | - /** |
|
35 | - * @return string defining the technical unique key |
|
36 | - * @since 13.0.0 |
|
37 | - */ |
|
38 | - public function getKey(); |
|
34 | + /** |
|
35 | + * @return string defining the technical unique key |
|
36 | + * @since 13.0.0 |
|
37 | + */ |
|
38 | + public function getKey(); |
|
39 | 39 | |
40 | - /** |
|
41 | - * In comparison to getKey() this function returns a human readable (maybe translated) name |
|
42 | - * @return null|string |
|
43 | - * @since 13.0.0 |
|
44 | - */ |
|
45 | - public function getDisplayName(); |
|
40 | + /** |
|
41 | + * In comparison to getKey() this function returns a human readable (maybe translated) name |
|
42 | + * @return null|string |
|
43 | + * @since 13.0.0 |
|
44 | + */ |
|
45 | + public function getDisplayName(); |
|
46 | 46 | |
47 | - /** |
|
48 | - * Calendar color |
|
49 | - * @return null|string |
|
50 | - * @since 13.0.0 |
|
51 | - */ |
|
52 | - public function getDisplayColor(); |
|
47 | + /** |
|
48 | + * Calendar color |
|
49 | + * @return null|string |
|
50 | + * @since 13.0.0 |
|
51 | + */ |
|
52 | + public function getDisplayColor(); |
|
53 | 53 | |
54 | - /** |
|
55 | - * @param string $pattern which should match within the $searchProperties |
|
56 | - * @param array $searchProperties defines the properties within the query pattern should match |
|
57 | - * @param array $options - optional parameters: |
|
58 | - * ['timerange' => ['start' => new DateTime(...), 'end' => new DateTime(...)]] |
|
59 | - * @param integer|null $limit - limit number of search results |
|
60 | - * @param integer|null $offset - offset for paging of search results |
|
61 | - * @return array an array of events/journals/todos which are arrays of key-value-pairs |
|
62 | - * @since 13.0.0 |
|
63 | - */ |
|
64 | - public function search($pattern, array $searchProperties=[], array $options=[], $limit=null, $offset=null); |
|
54 | + /** |
|
55 | + * @param string $pattern which should match within the $searchProperties |
|
56 | + * @param array $searchProperties defines the properties within the query pattern should match |
|
57 | + * @param array $options - optional parameters: |
|
58 | + * ['timerange' => ['start' => new DateTime(...), 'end' => new DateTime(...)]] |
|
59 | + * @param integer|null $limit - limit number of search results |
|
60 | + * @param integer|null $offset - offset for paging of search results |
|
61 | + * @return array an array of events/journals/todos which are arrays of key-value-pairs |
|
62 | + * @since 13.0.0 |
|
63 | + */ |
|
64 | + public function search($pattern, array $searchProperties=[], array $options=[], $limit=null, $offset=null); |
|
65 | 65 | |
66 | - /** |
|
67 | - * @return integer build up using \OCP\Constants |
|
68 | - * @since 13.0.0 |
|
69 | - */ |
|
70 | - public function getPermissions(); |
|
66 | + /** |
|
67 | + * @return integer build up using \OCP\Constants |
|
68 | + * @since 13.0.0 |
|
69 | + */ |
|
70 | + public function getPermissions(); |
|
71 | 71 | } |
@@ -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 ComposerAutoloaderInitLookupServerConnector::getLoader(); |
@@ -6,5 +6,5 @@ |
||
6 | 6 | $baseDir = $vendorDir; |
7 | 7 | |
8 | 8 | return array( |
9 | - 'OCA\\LookupServerConnector\\' => array($baseDir . '/../lib'), |
|
9 | + 'OCA\\LookupServerConnector\\' => array($baseDir.'/../lib'), |
|
10 | 10 | ); |