Completed
Pull Request — master (#5174)
by Björn
16:36
created
lib/public/Response.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -52,8 +52,8 @@  discard block
 block discarded – undo
52 52
 	 *  null		cache indefinitely
53 53
 	 * @since 4.0.0
54 54
 	 */
55
-	static public function enableCaching( $cache_time = null ) {
56
-		\OC_Response::enableCaching( $cache_time );
55
+	static public function enableCaching($cache_time = null) {
56
+		\OC_Response::enableCaching($cache_time);
57 57
 	}
58 58
 
59 59
 	/**
@@ -62,8 +62,8 @@  discard block
 block discarded – undo
62 62
 	 * @param string $lastModified time when the response was last modified
63 63
 	 * @since 4.0.0
64 64
 	 */
65
-	static public function setLastModifiedHeader( $lastModified ) {
66
-		\OC_Response::setLastModifiedHeader( $lastModified );
65
+	static public function setLastModifiedHeader($lastModified) {
66
+		\OC_Response::setLastModifiedHeader($lastModified);
67 67
 	}
68 68
 
69 69
 	/**
@@ -72,8 +72,8 @@  discard block
 block discarded – undo
72 72
 	 * @param string $type disposition type, either 'attachment' or 'inline'
73 73
 	 * @since 7.0.0
74 74
 	 */
75
-	static public function setContentDispositionHeader( $filename, $type = 'attachment' ) {
76
-		\OC_Response::setContentDispositionHeader( $filename, $type );
75
+	static public function setContentDispositionHeader($filename, $type = 'attachment') {
76
+		\OC_Response::setContentDispositionHeader($filename, $type);
77 77
 	}
78 78
 
79 79
 	/**
@@ -100,8 +100,8 @@  discard block
 block discarded – undo
100 100
 	 * @param string $etag token to use for modification check
101 101
 	 * @since 4.0.0
102 102
 	 */
103
-	static public function setETagHeader( $etag ) {
104
-		\OC_Response::setETagHeader( $etag );
103
+	static public function setETagHeader($etag) {
104
+		\OC_Response::setETagHeader($etag);
105 105
 	}
106 106
 
107 107
 	/**
@@ -110,8 +110,8 @@  discard block
 block discarded – undo
110 110
 	 * @since 4.0.0
111 111
 	 * @deprecated 8.1.0 - Use \OCP\AppFramework\Http\StreamResponse or another AppFramework controller instead
112 112
 	 */
113
-	static public function sendFile( $filepath ) {
114
-		\OC_Response::sendFile( $filepath );
113
+	static public function sendFile($filepath) {
114
+		\OC_Response::sendFile($filepath);
115 115
 	}
116 116
 
117 117
 	/**
@@ -121,8 +121,8 @@  discard block
 block discarded – undo
121 121
 	 *  DateTime object when to expire response
122 122
 	 * @since 4.0.0
123 123
 	 */
124
-	static public function setExpiresHeader( $expires ) {
125
-		\OC_Response::setExpiresHeader( $expires );
124
+	static public function setExpiresHeader($expires) {
125
+		\OC_Response::setExpiresHeader($expires);
126 126
 	}
127 127
 
128 128
 	/**
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
 	 * @param string $location to redirect to
131 131
 	 * @since 4.0.0
132 132
 	 */
133
-	static public function redirect( $location ) {
134
-		\OC_Response::redirect( $location );
133
+	static public function redirect($location) {
134
+		\OC_Response::redirect($location);
135 135
 	}
136 136
 }
Please login to merge, or discard this patch.
lib/public/Template.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -49,8 +49,8 @@  discard block
 block discarded – undo
49 49
  * @see \OCP\IURLGenerator::imagePath
50 50
  * @deprecated 8.0.0 Use \OCP\Template::image_path() instead
51 51
  */
52
-function image_path( $app, $image ) {
53
-	return(\image_path( $app, $image ));
52
+function image_path($app, $image) {
53
+	return(\image_path($app, $image));
54 54
 }
55 55
 
56 56
 
@@ -60,8 +60,8 @@  discard block
 block discarded – undo
60 60
  * @return string to the image of this file type.
61 61
  * @deprecated 8.0.0 Use \OCP\Template::mimetype_icon() instead
62 62
  */
63
-function mimetype_icon( $mimetype ) {
64
-	return(\mimetype_icon( $mimetype ));
63
+function mimetype_icon($mimetype) {
64
+	return(\mimetype_icon($mimetype));
65 65
 }
66 66
 
67 67
 /**
@@ -70,8 +70,8 @@  discard block
 block discarded – undo
70 70
  * @return string to the preview of the image
71 71
  * @deprecated 8.0.0 Use \OCP\Template::preview_icon() instead
72 72
  */
73
-function preview_icon( $path ) {
74
-	return(\preview_icon( $path ));
73
+function preview_icon($path) {
74
+	return(\preview_icon($path));
75 75
 }
76 76
 
77 77
 /**
@@ -82,8 +82,8 @@  discard block
 block discarded – undo
82 82
  * @return string link to the preview
83 83
  * @deprecated 8.0.0 Use \OCP\Template::publicPreview_icon() instead
84 84
  */
85
-function publicPreview_icon ( $path, $token ) {
86
-	return(\publicPreview_icon( $path, $token ));
85
+function publicPreview_icon($path, $token) {
86
+	return(\publicPreview_icon($path, $token));
87 87
 }
88 88
 
89 89
 /**
@@ -93,8 +93,8 @@  discard block
 block discarded – undo
93 93
  * @return string size as string
94 94
  * @deprecated 8.0.0 Use \OCP\Template::human_file_size() instead
95 95
  */
96
-function human_file_size( $bytes ) {
97
-	return(\human_file_size( $bytes ));
96
+function human_file_size($bytes) {
97
+	return(\human_file_size($bytes));
98 98
 }
99 99
 
100 100
 
@@ -106,7 +106,7 @@  discard block
 block discarded – undo
106 106
  *
107 107
  * @deprecated 8.0.0 Use \OCP\Template::relative_modified_date() instead
108 108
  */
109
-function relative_modified_date( $timestamp, $dateOnly = false ) {
109
+function relative_modified_date($timestamp, $dateOnly = false) {
110 110
 	return(\relative_modified_date($timestamp, null, $dateOnly));
111 111
 }
112 112
 
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
  * @return string html options
131 131
  * @deprecated 8.0.0 Use \OCP\Template::html_select_options() instead
132 132
  */
133
-function html_select_options($options, $selected, $params=array()) {
133
+function html_select_options($options, $selected, $params = array()) {
134 134
 	return(\html_select_options($options, $selected, $params));
135 135
 }
136 136
 
@@ -225,7 +225,7 @@  discard block
 block discarded – undo
225 225
 	 * @return string html options
226 226
 	 * @since 8.0.0
227 227
 	 */
228
-	public static function html_select_options($options, $selected, $params=array()) {
228
+	public static function html_select_options($options, $selected, $params = array()) {
229 229
 		return \html_select_options($options, $selected, $params);
230 230
 	}
231 231
 }
Please login to merge, or discard this patch.
lib/public/Settings/IManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
 	/**
36 36
 	 * @since 9.1.0
37 37
 	 */
38
-	const KEY_ADMIN_SECTION  = 'admin-section';
38
+	const KEY_ADMIN_SECTION = 'admin-section';
39 39
 
40 40
 	/**
41 41
 	 * sets up settings according to data specified by an apps info.xml, within
Please login to merge, or discard this patch.
lib/public/ICacheFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
  * @package OCP
30 30
  * @since 7.0.0
31 31
  */
32
-interface ICacheFactory{
32
+interface ICacheFactory {
33 33
 	/**
34 34
 	 * Get a memory cache instance
35 35
 	 *
Please login to merge, or discard this patch.
lib/public/Files/IAppData.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,6 +31,6 @@
 block discarded – undo
31 31
  * @since 11.0.0
32 32
  * @internal This interface is experimental and might change for NC12
33 33
  */
34
-interface IAppData extends ISimpleRoot  {
34
+interface IAppData extends ISimpleRoot {
35 35
 	
36 36
 }
Please login to merge, or discard this patch.
lib/public/Files/LockNotAcquiredException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,6 +57,6 @@
 block discarded – undo
57 57
 	 * @since 7.0.0
58 58
 	 */
59 59
 	public function __toString() {
60
-		return __CLASS__ . ": [{$this->code}]: {$this->message}\n";
60
+		return __CLASS__.": [{$this->code}]: {$this->message}\n";
61 61
 	}
62 62
 }
Please login to merge, or discard this patch.
lib/public/Lock/LockedException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -48,7 +48,7 @@
 block discarded – undo
48 48
 	 * @since 8.1.0
49 49
 	 */
50 50
 	public function __construct($path, \Exception $previous = null) {
51
-		parent::__construct('"' . $path . '" is locked', 0, $previous);
51
+		parent::__construct('"'.$path.'" is locked', 0, $previous);
52 52
 		$this->path = $path;
53 53
 	}
54 54
 
Please login to merge, or discard this patch.
lib/public/JSON.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 	 * @param bool $setContentType the optional content type
47 47
 	 * @deprecated 8.1.0 Use a AppFramework JSONResponse instead
48 48
 	 */
49
-	public static function encodedPrint( $data, $setContentType=true ) {
49
+	public static function encodedPrint($data, $setContentType = true) {
50 50
 		\OC_JSON::encodedPrint($data, $setContentType);
51 51
 	}
52 52
 
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
 	 * @return string json formatted string.
102 102
 	 * @deprecated 8.1.0 Use a AppFramework JSONResponse instead
103 103
 	 */
104
-	public static function success( $data = array() ) {
104
+	public static function success($data = array()) {
105 105
 		\OC_JSON::success($data);
106 106
 	}
107 107
 
@@ -124,8 +124,8 @@  discard block
 block discarded – undo
124 124
 	 * @return string json formatted error string.
125 125
 	 * @deprecated 8.1.0 Use a AppFramework JSONResponse instead
126 126
 	 */
127
-	public static function error( $data = array() ) {
128
-		\OC_JSON::error( $data );
127
+	public static function error($data = array()) {
128
+		\OC_JSON::error($data);
129 129
 	}
130 130
 
131 131
 	/**
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
 	 * @param string $type The content type header
134 134
 	 * @deprecated 8.1.0 Use a AppFramework JSONResponse instead
135 135
 	 */
136
-	public static function setContentTypeHeader( $type='application/json' ) {
136
+	public static function setContentTypeHeader($type = 'application/json') {
137 137
 		\OC_JSON::setContentTypeHeader($type);
138 138
 	}
139 139
 
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
 	 * @param string $app The app to check
154 154
 	 * @deprecated 8.1.0 Use the AppFramework instead. It will automatically check if the app is enabled.
155 155
 	 */
156
-	public static function checkAppEnabled( $app ) {
156
+	public static function checkAppEnabled($app) {
157 157
 		\OC_JSON::checkAppEnabled($app);
158 158
 	}
159 159
 
Please login to merge, or discard this patch.
lib/public/AppFramework/OCSController.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -61,15 +61,15 @@
 block discarded – undo
61 61
 	 */
62 62
 	public function __construct($appName,
63 63
 								IRequest $request,
64
-								$corsMethods='PUT, POST, GET, DELETE, PATCH',
65
-								$corsAllowedHeaders='Authorization, Content-Type, Accept',
66
-								$corsMaxAge=1728000){
64
+								$corsMethods = 'PUT, POST, GET, DELETE, PATCH',
65
+								$corsAllowedHeaders = 'Authorization, Content-Type, Accept',
66
+								$corsMaxAge = 1728000) {
67 67
 		parent::__construct($appName, $request, $corsMethods,
68 68
 							$corsAllowedHeaders, $corsMaxAge);
69
-		$this->registerResponder('json', function ($data) {
69
+		$this->registerResponder('json', function($data) {
70 70
 			return $this->buildOCSResponse('json', $data);
71 71
 		});
72
-		$this->registerResponder('xml', function ($data) {
72
+		$this->registerResponder('xml', function($data) {
73 73
 			return $this->buildOCSResponse('xml', $data);
74 74
 		});
75 75
 	}
Please login to merge, or discard this patch.