@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | /** @var bool */ |
46 | 46 | private $canPurgeToSaveSpace; |
47 | 47 | |
48 | - public function __construct(IConfig $config,ITimeFactory $timeFactory){ |
|
48 | + public function __construct(IConfig $config, ITimeFactory $timeFactory) { |
|
49 | 49 | $this->timeFactory = $timeFactory; |
50 | 50 | $this->retentionObligation = $config->getSystemValue('versions_retention_obligation', 'auto'); |
51 | 51 | |
@@ -58,14 +58,14 @@ discard block |
||
58 | 58 | * Is versions expiration enabled |
59 | 59 | * @return bool |
60 | 60 | */ |
61 | - public function isEnabled(){ |
|
61 | + public function isEnabled() { |
|
62 | 62 | return $this->retentionObligation !== 'disabled'; |
63 | 63 | } |
64 | 64 | |
65 | 65 | /** |
66 | 66 | * Is default expiration active |
67 | 67 | */ |
68 | - public function shouldAutoExpire(){ |
|
68 | + public function shouldAutoExpire() { |
|
69 | 69 | return $this->minAge === self::NO_OBLIGATION |
70 | 70 | || $this->maxAge === self::NO_OBLIGATION; |
71 | 71 | } |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | * @param bool $quotaExceeded |
77 | 77 | * @return bool |
78 | 78 | */ |
79 | - public function isExpired($timestamp, $quotaExceeded = false){ |
|
79 | + public function isExpired($timestamp, $quotaExceeded = false) { |
|
80 | 80 | // No expiration if disabled |
81 | 81 | if (!$this->isEnabled()) { |
82 | 82 | return false; |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | $time = $this->timeFactory->getTime(); |
91 | 91 | // Never expire dates in future e.g. misconfiguration or negative time |
92 | 92 | // adjustment |
93 | - if ($time<$timestamp) { |
|
93 | + if ($time < $timestamp) { |
|
94 | 94 | return false; |
95 | 95 | } |
96 | 96 | |
@@ -117,7 +117,7 @@ discard block |
||
117 | 117 | * Get maximal retention obligation as a timestamp |
118 | 118 | * @return int |
119 | 119 | */ |
120 | - public function getMaxAgeAsTimestamp(){ |
|
120 | + public function getMaxAgeAsTimestamp() { |
|
121 | 121 | $maxAge = false; |
122 | 122 | if ($this->isEnabled() && $this->maxAge !== self::NO_OBLIGATION) { |
123 | 123 | $time = $this->timeFactory->getTime(); |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | * Read versions_retention_obligation, validate it |
131 | 131 | * and set private members accordingly |
132 | 132 | */ |
133 | - private function parseRetentionObligation(){ |
|
133 | + private function parseRetentionObligation() { |
|
134 | 134 | $splitValues = explode(',', $this->retentionObligation); |
135 | 135 | if (!isset($splitValues[0])) { |
136 | 136 | $minValue = 'auto'; |
@@ -149,7 +149,7 @@ discard block |
||
149 | 149 | if (!ctype_digit($minValue) && $minValue !== 'auto') { |
150 | 150 | $isValid = false; |
151 | 151 | \OC::$server->getLogger()->warning( |
152 | - $minValue . ' is not a valid value for minimal versions retention obligation. Check versions_retention_obligation in your config.php. Falling back to auto.', |
|
152 | + $minValue.' is not a valid value for minimal versions retention obligation. Check versions_retention_obligation in your config.php. Falling back to auto.', |
|
153 | 153 | ['app'=>'files_versions'] |
154 | 154 | ); |
155 | 155 | } |
@@ -157,12 +157,12 @@ discard block |
||
157 | 157 | if (!ctype_digit($maxValue) && $maxValue !== 'auto') { |
158 | 158 | $isValid = false; |
159 | 159 | \OC::$server->getLogger()->warning( |
160 | - $maxValue . ' is not a valid value for maximal versions retention obligation. Check versions_retention_obligation in your config.php. Falling back to auto.', |
|
160 | + $maxValue.' is not a valid value for maximal versions retention obligation. Check versions_retention_obligation in your config.php. Falling back to auto.', |
|
161 | 161 | ['app'=>'files_versions'] |
162 | 162 | ); |
163 | 163 | } |
164 | 164 | |
165 | - if (!$isValid){ |
|
165 | + if (!$isValid) { |
|
166 | 166 | $minValue = 'auto'; |
167 | 167 | $maxValue = 'auto'; |
168 | 168 | } |
@@ -29,11 +29,11 @@ |
||
29 | 29 | OCP\JSON::checkLoggedIn(); |
30 | 30 | |
31 | 31 | $file = $_GET['file']; |
32 | -$revision=(int)$_GET['revision']; |
|
32 | +$revision = (int) $_GET['revision']; |
|
33 | 33 | |
34 | 34 | try { |
35 | 35 | list($uid, $filename) = OCA\Files_Versions\Storage::getUidAndFilename($file); |
36 | -} catch(\OCP\Files\NotFoundException $e) { |
|
36 | +} catch (\OCP\Files\NotFoundException $e) { |
|
37 | 37 | header("HTTP/1.1 404 Not Found"); |
38 | 38 | $tmpl = new OCP\Template('', '404', 'guest'); |
39 | 39 | $tmpl->assign('file', ''); |
@@ -59,7 +59,7 @@ |
||
59 | 59 | * @return \Doctrine\DBAL\Driver\Statement The prepared statement. |
60 | 60 | * @since 6.0.0 |
61 | 61 | */ |
62 | - public function prepare($sql, $limit=null, $offset=null); |
|
62 | + public function prepare($sql, $limit = null, $offset = null); |
|
63 | 63 | |
64 | 64 | /** |
65 | 65 | * Executes an, optionally parameterized, SQL query. |
@@ -42,11 +42,11 @@ |
||
42 | 42 | const METHOD_STREAM = 'stream'; |
43 | 43 | const METHOD_MAIL = 'email'; |
44 | 44 | |
45 | - const PRIORITY_VERYLOW = 10; |
|
46 | - const PRIORITY_LOW = 20; |
|
47 | - const PRIORITY_MEDIUM = 30; |
|
48 | - const PRIORITY_HIGH = 40; |
|
49 | - const PRIORITY_VERYHIGH = 50; |
|
45 | + const PRIORITY_VERYLOW = 10; |
|
46 | + const PRIORITY_LOW = 20; |
|
47 | + const PRIORITY_MEDIUM = 30; |
|
48 | + const PRIORITY_HIGH = 40; |
|
49 | + const PRIORITY_VERYHIGH = 50; |
|
50 | 50 | |
51 | 51 | /** |
52 | 52 | * The extension can return an array of additional notification types. |
@@ -68,7 +68,7 @@ |
||
68 | 68 | * remove all user backends |
69 | 69 | * @since 8.0.0 |
70 | 70 | */ |
71 | - public function clearBackends() ; |
|
71 | + public function clearBackends(); |
|
72 | 72 | |
73 | 73 | /** |
74 | 74 | * get a user by user id |
@@ -61,7 +61,7 @@ |
||
61 | 61 | */ |
62 | 62 | public function addEntityCollection($name, \Closure $entityExistsFunction) { |
63 | 63 | if (isset($this->collections[$name])) { |
64 | - throw new \OutOfBoundsException('Duplicate entity name "' . $name . '"'); |
|
64 | + throw new \OutOfBoundsException('Duplicate entity name "'.$name.'"'); |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | $this->collections[$name] = $entityExistsFunction; |
@@ -72,7 +72,7 @@ |
||
72 | 72 | * @deprecated 9.1.0 Use the AppFramework |
73 | 73 | */ |
74 | 74 | public static function register($method, $url, $action, $app, $authLevel = self::USER_AUTH, |
75 | - $defaults = array(), $requirements = array()){ |
|
75 | + $defaults = array(), $requirements = array()) { |
|
76 | 76 | \OC_API::register($method, $url, $action, $app, $authLevel, $defaults, $requirements); |
77 | 77 | } |
78 | 78 |
@@ -159,7 +159,7 @@ |
||
159 | 159 | * @return bool Returns false on error. |
160 | 160 | * @since 6.0.0 |
161 | 161 | */ |
162 | - public function addMultiple($names, $sync=false, $id = null); |
|
162 | + public function addMultiple($names, $sync = false, $id = null); |
|
163 | 163 | |
164 | 164 | /** |
165 | 165 | * Delete tag/object relations from the db |
@@ -57,8 +57,8 @@ discard block |
||
57 | 57 | * This function gets the value from config.php. If it does not exist, |
58 | 58 | * $default will be returned. |
59 | 59 | */ |
60 | - public static function getSystemValue( $key, $default = null ) { |
|
61 | - return \OC::$server->getConfig()->getSystemValue( $key, $default ); |
|
60 | + public static function getSystemValue($key, $default = null) { |
|
61 | + return \OC::$server->getConfig()->getSystemValue($key, $default); |
|
62 | 62 | } |
63 | 63 | |
64 | 64 | /** |
@@ -71,9 +71,9 @@ discard block |
||
71 | 71 | * This function sets the value and writes the config.php. If the file can |
72 | 72 | * not be written, false will be returned. |
73 | 73 | */ |
74 | - public static function setSystemValue( $key, $value ) { |
|
74 | + public static function setSystemValue($key, $value) { |
|
75 | 75 | try { |
76 | - \OC::$server->getConfig()->setSystemValue( $key, $value ); |
|
76 | + \OC::$server->getConfig()->setSystemValue($key, $value); |
|
77 | 77 | } catch (\Exception $e) { |
78 | 78 | return false; |
79 | 79 | } |
@@ -87,8 +87,8 @@ discard block |
||
87 | 87 | * |
88 | 88 | * This function deletes the value from config.php. |
89 | 89 | */ |
90 | - public static function deleteSystemValue( $key ) { |
|
91 | - \OC::$server->getConfig()->deleteSystemValue( $key ); |
|
90 | + public static function deleteSystemValue($key) { |
|
91 | + \OC::$server->getConfig()->deleteSystemValue($key); |
|
92 | 92 | } |
93 | 93 | |
94 | 94 | /** |
@@ -102,8 +102,8 @@ discard block |
||
102 | 102 | * This function gets a value from the appconfig table. If the key does |
103 | 103 | * not exist the default value will be returned |
104 | 104 | */ |
105 | - public static function getAppValue( $app, $key, $default = null ) { |
|
106 | - return \OC::$server->getConfig()->getAppValue( $app, $key, $default ); |
|
105 | + public static function getAppValue($app, $key, $default = null) { |
|
106 | + return \OC::$server->getConfig()->getAppValue($app, $key, $default); |
|
107 | 107 | } |
108 | 108 | |
109 | 109 | /** |
@@ -116,9 +116,9 @@ discard block |
||
116 | 116 | * |
117 | 117 | * Sets a value. If the key did not exist before it will be created. |
118 | 118 | */ |
119 | - public static function setAppValue( $app, $key, $value ) { |
|
119 | + public static function setAppValue($app, $key, $value) { |
|
120 | 120 | try { |
121 | - \OC::$server->getConfig()->setAppValue( $app, $key, $value ); |
|
121 | + \OC::$server->getConfig()->setAppValue($app, $key, $value); |
|
122 | 122 | } catch (\Exception $e) { |
123 | 123 | return false; |
124 | 124 | } |
@@ -137,8 +137,8 @@ discard block |
||
137 | 137 | * This function gets a value from the preferences table. If the key does |
138 | 138 | * not exist the default value will be returned |
139 | 139 | */ |
140 | - public static function getUserValue( $user, $app, $key, $default = null ) { |
|
141 | - return \OC::$server->getConfig()->getUserValue( $user, $app, $key, $default ); |
|
140 | + public static function getUserValue($user, $app, $key, $default = null) { |
|
141 | + return \OC::$server->getConfig()->getUserValue($user, $app, $key, $default); |
|
142 | 142 | } |
143 | 143 | |
144 | 144 | /** |
@@ -153,9 +153,9 @@ discard block |
||
153 | 153 | * Adds a value to the preferences. If the key did not exist before, it |
154 | 154 | * will be added automagically. |
155 | 155 | */ |
156 | - public static function setUserValue( $user, $app, $key, $value ) { |
|
156 | + public static function setUserValue($user, $app, $key, $value) { |
|
157 | 157 | try { |
158 | - \OC::$server->getConfig()->setUserValue( $user, $app, $key, $value ); |
|
158 | + \OC::$server->getConfig()->setUserValue($user, $app, $key, $value); |
|
159 | 159 | } catch (\Exception $e) { |
160 | 160 | return false; |
161 | 161 | } |