refactor: add space related lint rules

Signed-off-by: Saw-jan <saw.jan.grg3e@gmail.com>
This commit is contained in:
Saw-jan
2025-06-19 12:12:17 +05:45
parent a565108302
commit 2ef566b85b
25 changed files with 123 additions and 120 deletions

View File

@@ -297,7 +297,7 @@ class WebDavHelper {
?string $propertyValue,
?string $namespaceString = null,
?int $davPathVersionToUse = self::DAV_VERSION_NEW,
?string $type="files",
?string $type = "files",
?string $spaceId = null,
): ResponseInterface {
if ($namespaceString !== null) {
@@ -377,14 +377,14 @@ class WebDavHelper {
* @throws GuzzleException
*/
public static function proppatchWithMultipleProps(
?string $baseUrl,
?string $user,
?string $baseUrl,
?string $user,
?string $password,
string $path,
string $path,
?array $propertiesArray,
?int $davPathVersion = null,
?string $namespaceString = null,
?string $type="files"
?int $davPathVersion = null,
?string $namespaceString = null,
?string $type = "files"
): ResponseInterface {
$propertyBody = "";
foreach ($propertiesArray as $propertyArray) {