Passed
Push — master ( 04a651...83ab99 )
by Christoph
13:24 queued 10s
created
lib/public/Calendar/Resource/IManager.php 1 patch
Indentation   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -31,41 +31,41 @@
 block discarded – undo
31 31
  */
32 32
 interface IManager {
33 33
 
34
-	/**
35
-	 * Registers a resource backend
36
-	 *
37
-	 * @param string $backendClass
38
-	 * @return void
39
-	 * @since 14.0.0
40
-	 */
41
-	public function registerBackend(string $backendClass);
34
+    /**
35
+     * Registers a resource backend
36
+     *
37
+     * @param string $backendClass
38
+     * @return void
39
+     * @since 14.0.0
40
+     */
41
+    public function registerBackend(string $backendClass);
42 42
 
43
-	/**
44
-	 * Unregisters a resource backend
45
-	 *
46
-	 * @param string $backendClass
47
-	 * @return void
48
-	 * @since 14.0.0
49
-	 */
50
-	public function unregisterBackend(string $backendClass);
43
+    /**
44
+     * Unregisters a resource backend
45
+     *
46
+     * @param string $backendClass
47
+     * @return void
48
+     * @since 14.0.0
49
+     */
50
+    public function unregisterBackend(string $backendClass);
51 51
 
52
-	/**
53
-	 * @return IBackend[]
54
-	 * @since 14.0.0
55
-	 */
56
-	public function getBackends():array;
52
+    /**
53
+     * @return IBackend[]
54
+     * @since 14.0.0
55
+     */
56
+    public function getBackends():array;
57 57
 
58
-	/**
59
-	 * @param string $backendId
60
-	 * @return IBackend|null
61
-	 * @since 14.0.0
62
-	 */
63
-	public function getBackend($backendId);
58
+    /**
59
+     * @param string $backendId
60
+     * @return IBackend|null
61
+     * @since 14.0.0
62
+     */
63
+    public function getBackend($backendId);
64 64
 
65
-	/**
66
-	 * removes all registered backend instances
67
-	 * @return void
68
-	 * @since 14.0.0
69
-	 */
70
-	public function clear();
65
+    /**
66
+     * removes all registered backend instances
67
+     * @return void
68
+     * @since 14.0.0
69
+     */
70
+    public function clear();
71 71
 }
Please login to merge, or discard this patch.
lib/public/Calendar/Room/IManager.php 1 patch
Indentation   +33 added lines, -33 removed lines patch added patch discarded remove patch
@@ -31,41 +31,41 @@
 block discarded – undo
31 31
  */
32 32
 interface IManager {
33 33
 
34
-	/**
35
-	 * Registers a room backend
36
-	 *
37
-	 * @param string $backendClass
38
-	 * @return void
39
-	 * @since 14.0.0
40
-	 */
41
-	public function registerBackend(string $backendClass);
34
+    /**
35
+     * Registers a room backend
36
+     *
37
+     * @param string $backendClass
38
+     * @return void
39
+     * @since 14.0.0
40
+     */
41
+    public function registerBackend(string $backendClass);
42 42
 
43
-	/**
44
-	 * Unregisters a room backend
45
-	 *
46
-	 * @param string $backendClass
47
-	 * @return void
48
-	 * @since 14.0.0
49
-	 */
50
-	public function unregisterBackend(string $backendClass);
43
+    /**
44
+     * Unregisters a room backend
45
+     *
46
+     * @param string $backendClass
47
+     * @return void
48
+     * @since 14.0.0
49
+     */
50
+    public function unregisterBackend(string $backendClass);
51 51
 
52
-	/**
53
-	 * @return IBackend[]
54
-	 * @since 14.0.0
55
-	 */
56
-	public function getBackends():array;
52
+    /**
53
+     * @return IBackend[]
54
+     * @since 14.0.0
55
+     */
56
+    public function getBackends():array;
57 57
 
58
-	/**
59
-	 * @param string $backendId
60
-	 * @return IBackend|null
61
-	 * @since 14.0.0
62
-	 */
63
-	public function getBackend($backendId);
58
+    /**
59
+     * @param string $backendId
60
+     * @return IBackend|null
61
+     * @since 14.0.0
62
+     */
63
+    public function getBackend($backendId);
64 64
 
65
-	/**
66
-	 * removes all registered backend instances
67
-	 * @return void
68
-	 * @since 14.0.0
69
-	 */
70
-	public function clear();
65
+    /**
66
+     * removes all registered backend instances
67
+     * @return void
68
+     * @since 14.0.0
69
+     */
70
+    public function clear();
71 71
 }
Please login to merge, or discard this patch.
apps/admin_audit/lib/Actions/AppManagement.php 1 patch
Indentation   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -26,34 +26,34 @@
 block discarded – undo
26 26
 
27 27
 class AppManagement extends Action {
28 28
 
29
-	/**
30
-	 * @param string $appName
31
-	 */
32
-	public function enableApp(string $appName) {
33
-		$this->log('App "%s" enabled',
34
-			['app' => $appName],
35
-			['app']
36
-		);
37
-	}
29
+    /**
30
+     * @param string $appName
31
+     */
32
+    public function enableApp(string $appName) {
33
+        $this->log('App "%s" enabled',
34
+            ['app' => $appName],
35
+            ['app']
36
+        );
37
+    }
38 38
 
39
-	/**
40
-	 * @param string $appName
41
-	 * @param string[] $groups
42
-	 */
43
-	public function enableAppForGroups(string $appName, array $groups) {
44
-		$this->log('App "%1$s" enabled for groups: %2$s',
45
-			['app' => $appName, 'groups' => implode(', ', $groups)],
46
-			['app', 'groups']
47
-		);
48
-	}
39
+    /**
40
+     * @param string $appName
41
+     * @param string[] $groups
42
+     */
43
+    public function enableAppForGroups(string $appName, array $groups) {
44
+        $this->log('App "%1$s" enabled for groups: %2$s',
45
+            ['app' => $appName, 'groups' => implode(', ', $groups)],
46
+            ['app', 'groups']
47
+        );
48
+    }
49 49
 
50
-	/**
51
-	 * @param string $appName
52
-	 */
53
-	public function disableApp(string $appName) {
54
-		$this->log('App "%s" disabled',
55
-			['app' => $appName],
56
-			['app']
57
-		);
58
-	}
50
+    /**
51
+     * @param string $appName
52
+     */
53
+    public function disableApp(string $appName) {
54
+        $this->log('App "%s" disabled',
55
+            ['app' => $appName],
56
+            ['app']
57
+        );
58
+    }
59 59
 }
Please login to merge, or discard this patch.
lib/public/Federation/Exceptions/ProviderAlreadyExistsException.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -32,19 +32,19 @@
 block discarded – undo
32 32
  */
33 33
 class ProviderAlreadyExistsException extends HintException {
34 34
 
35
-	/**
36
-	 * ProviderAlreadyExistsException constructor.
37
-	 *
38
-	 * @since 14.0.0
39
-	 *
40
-	 * @param string $newProviderId cloud federation provider ID of the new provider
41
-	 * @param string $existingProviderName name of cloud federation provider which already use the same ID
42
-	 */
43
-	public function __construct($newProviderId, $existingProviderName) {
44
-		$l = \OC::$server->getL10N('federation');
45
-		$message = 'ID "' . $newProviderId . '" already used by cloud federation provider "' . $existingProviderName . '"';
46
-		$hint = $l->t('ID "%1$s" already used by cloud federation provider "%2$s"', [$newProviderId, $existingProviderName]);
47
-		parent::__construct($message, $hint);
48
-	}
35
+    /**
36
+     * ProviderAlreadyExistsException constructor.
37
+     *
38
+     * @since 14.0.0
39
+     *
40
+     * @param string $newProviderId cloud federation provider ID of the new provider
41
+     * @param string $existingProviderName name of cloud federation provider which already use the same ID
42
+     */
43
+    public function __construct($newProviderId, $existingProviderName) {
44
+        $l = \OC::$server->getL10N('federation');
45
+        $message = 'ID "' . $newProviderId . '" already used by cloud federation provider "' . $existingProviderName . '"';
46
+        $hint = $l->t('ID "%1$s" already used by cloud federation provider "%2$s"', [$newProviderId, $existingProviderName]);
47
+        parent::__construct($message, $hint);
48
+    }
49 49
 
50 50
 }
Please login to merge, or discard this patch.
lib/public/AppFramework/Utility/ITimeFactory.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -31,18 +31,18 @@
 block discarded – undo
31 31
  */
32 32
 interface ITimeFactory {
33 33
 
34
-	/**
35
-	 * @return int the result of a call to time()
36
-	 * @since 8.0.0
37
-	 */
38
-	public function getTime(): int;
34
+    /**
35
+     * @return int the result of a call to time()
36
+     * @since 8.0.0
37
+     */
38
+    public function getTime(): int;
39 39
 
40
-	/**
41
-	 * @param string $time
42
-	 * @param \DateTimeZone $timezone
43
-	 * @return \DateTime
44
-	 * @since 15.0.0
45
-	 */
46
-	public function getDateTime(string $time = 'now', \DateTimeZone $timezone = null): \DateTime;
40
+    /**
41
+     * @param string $time
42
+     * @param \DateTimeZone $timezone
43
+     * @return \DateTime
44
+     * @since 15.0.0
45
+     */
46
+    public function getDateTime(string $time = 'now', \DateTimeZone $timezone = null): \DateTime;
47 47
 
48 48
 }
Please login to merge, or discard this patch.
lib/private/AppFramework/Utility/TimeFactory.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -34,21 +34,21 @@
 block discarded – undo
34 34
 class TimeFactory implements ITimeFactory {
35 35
 
36 36
 
37
-	/**
38
-	 * @return int the result of a call to time()
39
-	 */
40
-	public function getTime(): int {
41
-		return time();
42
-	}
43
-
44
-	/**
45
-	 * @param string $time
46
-	 * @param \DateTimeZone $timezone
47
-	 * @return \DateTime
48
-	 * @since 15.0.0
49
-	 */
50
-	public function getDateTime(string $time = 'now', \DateTimeZone $timezone = null): \DateTime {
51
-		return new \DateTime($time, $timezone);
52
-	}
37
+    /**
38
+     * @return int the result of a call to time()
39
+     */
40
+    public function getTime(): int {
41
+        return time();
42
+    }
43
+
44
+    /**
45
+     * @param string $time
46
+     * @param \DateTimeZone $timezone
47
+     * @return \DateTime
48
+     * @since 15.0.0
49
+     */
50
+    public function getDateTime(string $time = 'now', \DateTimeZone $timezone = null): \DateTime {
51
+        return new \DateTime($time, $timezone);
52
+    }
53 53
 
54 54
 }
Please login to merge, or discard this patch.
lib/private/Dashboard/DashboardManager.php 1 patch
Indentation   +97 added lines, -97 removed lines patch added patch discarded remove patch
@@ -46,103 +46,103 @@
 block discarded – undo
46 46
 class DashboardManager implements IDashboardManager {
47 47
 
48 48
 
49
-	/** @var IWidgetsService */
50
-	private $widgetsService;
51
-
52
-	/** @var IEventsService */
53
-	private $eventsService;
54
-
55
-
56
-	/**
57
-	 * @param IEventsService $eventsService
58
-	 */
59
-	public function registerEventsService(IEventsService $eventsService) {
60
-		$this->eventsService = $eventsService;
61
-	}
62
-
63
-
64
-	/**
65
-	 * @param IWidgetsService $widgetsService
66
-	 */
67
-	public function registerWidgetsService(IWidgetsService $widgetsService) {
68
-		$this->widgetsService = $widgetsService;
69
-	}
70
-
71
-
72
-	/**
73
-	 * @param string $widgetId
74
-	 * @param string $userId
75
-	 *
76
-	 * @return IWidgetConfig
77
-	 * @throws DashboardAppNotAvailableException
78
-	 */
79
-	public function getWidgetConfig(string $widgetId, string $userId): IWidgetConfig {
80
-		return $this->getWidgetsService()->getWidgetConfig($widgetId, $userId);
81
-	}
82
-
83
-
84
-	/**
85
-	 * @param string $widgetId
86
-	 * @param array $users
87
-	 * @param array $payload
88
-	 * @param string $uniqueId
89
-	 *
90
-	 * @throws DashboardAppNotAvailableException
91
-	 */
92
-	public function createUsersEvent(string $widgetId, array $users, array $payload, string $uniqueId = '') {
93
-		$this->getEventsService()->createUsersEvent($widgetId, $users, $payload, $uniqueId);
94
-	}
95
-
96
-
97
-	/**
98
-	 * @param string $widgetId
99
-	 * @param array $groups
100
-	 * @param array $payload
101
-	 * @param string $uniqueId
102
-	 *
103
-	 * @throws DashboardAppNotAvailableException
104
-	 */
105
-	public function createGroupsEvent(string $widgetId, array $groups, array $payload, string $uniqueId = '') {
106
-		$this->getEventsService()->createGroupsEvent($widgetId, $groups, $payload, $uniqueId);
107
-	}
108
-
109
-
110
-	/**
111
-	 * @param string $widgetId
112
-	 * @param array $payload
113
-	 * @param string $uniqueId
114
-	 *
115
-	 * @throws DashboardAppNotAvailableException
116
-	 */
117
-	public function createGlobalEvent(string $widgetId, array $payload, string $uniqueId = '') {
118
-		$this->getEventsService()->createGlobalEvent($widgetId, $payload, $uniqueId);
119
-	}
120
-
121
-
122
-	/**
123
-	 * @return IWidgetsService
124
-	 * @throws DashboardAppNotAvailableException
125
-	 */
126
-	private function getWidgetsService() {
127
-		if ($this->widgetsService === null) {
128
-			throw new DashboardAppNotAvailableException('No IWidgetsService registered');
129
-		}
130
-
131
-		return $this->widgetsService;
132
-	}
133
-
134
-
135
-	/**
136
-	 * @return IEventsService
137
-	 * @throws DashboardAppNotAvailableException
138
-	 */
139
-	private function getEventsService() {
140
-		if ($this->eventsService === null) {
141
-			throw new DashboardAppNotAvailableException('No IEventsService registered');
142
-		}
143
-
144
-		return $this->eventsService;
145
-	}
49
+    /** @var IWidgetsService */
50
+    private $widgetsService;
51
+
52
+    /** @var IEventsService */
53
+    private $eventsService;
54
+
55
+
56
+    /**
57
+     * @param IEventsService $eventsService
58
+     */
59
+    public function registerEventsService(IEventsService $eventsService) {
60
+        $this->eventsService = $eventsService;
61
+    }
62
+
63
+
64
+    /**
65
+     * @param IWidgetsService $widgetsService
66
+     */
67
+    public function registerWidgetsService(IWidgetsService $widgetsService) {
68
+        $this->widgetsService = $widgetsService;
69
+    }
70
+
71
+
72
+    /**
73
+     * @param string $widgetId
74
+     * @param string $userId
75
+     *
76
+     * @return IWidgetConfig
77
+     * @throws DashboardAppNotAvailableException
78
+     */
79
+    public function getWidgetConfig(string $widgetId, string $userId): IWidgetConfig {
80
+        return $this->getWidgetsService()->getWidgetConfig($widgetId, $userId);
81
+    }
82
+
83
+
84
+    /**
85
+     * @param string $widgetId
86
+     * @param array $users
87
+     * @param array $payload
88
+     * @param string $uniqueId
89
+     *
90
+     * @throws DashboardAppNotAvailableException
91
+     */
92
+    public function createUsersEvent(string $widgetId, array $users, array $payload, string $uniqueId = '') {
93
+        $this->getEventsService()->createUsersEvent($widgetId, $users, $payload, $uniqueId);
94
+    }
95
+
96
+
97
+    /**
98
+     * @param string $widgetId
99
+     * @param array $groups
100
+     * @param array $payload
101
+     * @param string $uniqueId
102
+     *
103
+     * @throws DashboardAppNotAvailableException
104
+     */
105
+    public function createGroupsEvent(string $widgetId, array $groups, array $payload, string $uniqueId = '') {
106
+        $this->getEventsService()->createGroupsEvent($widgetId, $groups, $payload, $uniqueId);
107
+    }
108
+
109
+
110
+    /**
111
+     * @param string $widgetId
112
+     * @param array $payload
113
+     * @param string $uniqueId
114
+     *
115
+     * @throws DashboardAppNotAvailableException
116
+     */
117
+    public function createGlobalEvent(string $widgetId, array $payload, string $uniqueId = '') {
118
+        $this->getEventsService()->createGlobalEvent($widgetId, $payload, $uniqueId);
119
+    }
120
+
121
+
122
+    /**
123
+     * @return IWidgetsService
124
+     * @throws DashboardAppNotAvailableException
125
+     */
126
+    private function getWidgetsService() {
127
+        if ($this->widgetsService === null) {
128
+            throw new DashboardAppNotAvailableException('No IWidgetsService registered');
129
+        }
130
+
131
+        return $this->widgetsService;
132
+    }
133
+
134
+
135
+    /**
136
+     * @return IEventsService
137
+     * @throws DashboardAppNotAvailableException
138
+     */
139
+    private function getEventsService() {
140
+        if ($this->eventsService === null) {
141
+            throw new DashboardAppNotAvailableException('No IEventsService registered');
142
+        }
143
+
144
+        return $this->eventsService;
145
+    }
146 146
 
147 147
 }
148 148
 
Please login to merge, or discard this patch.
lib/public/Accounts/IAccountProperty.php 1 patch
Indentation   +59 added lines, -59 removed lines patch added patch discarded remove patch
@@ -34,71 +34,71 @@
 block discarded – undo
34 34
  */
35 35
 interface IAccountProperty extends \JsonSerializable {
36 36
 
37
-	/**
38
-	 * Set the value of a property
39
-	 *
40
-	 * @since 15.0.0
41
-	 *
42
-	 * @param string $value
43
-	 * @return IAccountProperty
44
-	 */
45
-	public function setValue(string $value): IAccountProperty;
37
+    /**
38
+     * Set the value of a property
39
+     *
40
+     * @since 15.0.0
41
+     *
42
+     * @param string $value
43
+     * @return IAccountProperty
44
+     */
45
+    public function setValue(string $value): IAccountProperty;
46 46
 
47
-	/**
48
-	 * Set the scope of a property
49
-	 *
50
-	 * @since 15.0.0
51
-	 *
52
-	 * @param string $scope
53
-	 * @return IAccountProperty
54
-	 */
55
-	public function setScope(string $scope): IAccountProperty;
47
+    /**
48
+     * Set the scope of a property
49
+     *
50
+     * @since 15.0.0
51
+     *
52
+     * @param string $scope
53
+     * @return IAccountProperty
54
+     */
55
+    public function setScope(string $scope): IAccountProperty;
56 56
 
57
-	/**
58
-	 * Set the verification status of a property
59
-	 *
60
-	 * @since 15.0.0
61
-	 *
62
-	 * @param string $verified
63
-	 * @return IAccountProperty
64
-	 */
65
-	public function setVerified(string $verified): IAccountProperty;
57
+    /**
58
+     * Set the verification status of a property
59
+     *
60
+     * @since 15.0.0
61
+     *
62
+     * @param string $verified
63
+     * @return IAccountProperty
64
+     */
65
+    public function setVerified(string $verified): IAccountProperty;
66 66
 
67
-	/**
68
-	 * Get the name of a property
69
-	 *
70
-	 * @since 15.0.0
71
-	 *
72
-	 * @return string
73
-	 */
74
-	public function getName(): string;
67
+    /**
68
+     * Get the name of a property
69
+     *
70
+     * @since 15.0.0
71
+     *
72
+     * @return string
73
+     */
74
+    public function getName(): string;
75 75
 
76
-	/**
77
-	 * Get the value of a property
78
-	 *
79
-	 * @since 15.0.0
80
-	 *
81
-	 * @return string
82
-	 */
83
-	public function getValue(): string;
76
+    /**
77
+     * Get the value of a property
78
+     *
79
+     * @since 15.0.0
80
+     *
81
+     * @return string
82
+     */
83
+    public function getValue(): string;
84 84
 
85
-	/**
86
-	 * Get the scope of a property
87
-	 *
88
-	 * @since 15.0.0
89
-	 *
90
-	 * @return string
91
-	 */
92
-	public function getScope(): string;
85
+    /**
86
+     * Get the scope of a property
87
+     *
88
+     * @since 15.0.0
89
+     *
90
+     * @return string
91
+     */
92
+    public function getScope(): string;
93 93
 
94
-	/**
95
-	 * Get the verification status of a property
96
-	 *
97
-	 * @since 15.0.0
98
-	 *
99
-	 * @return string
100
-	 */
101
-	public function getVerified(): string;
94
+    /**
95
+     * Get the verification status of a property
96
+     *
97
+     * @since 15.0.0
98
+     *
99
+     * @return string
100
+     */
101
+    public function getVerified(): string;
102 102
 
103 103
 }
104 104
 
Please login to merge, or discard this patch.
lib/private/Accounts/AccountProperty.php 1 patch
Indentation   +98 added lines, -98 removed lines patch added patch discarded remove patch
@@ -30,111 +30,111 @@
 block discarded – undo
30 30
 
31 31
 class AccountProperty implements IAccountProperty {
32 32
 
33
-	/** @var string */
34
-	private $name;
35
-	/** @var string */
36
-	private $value;
37
-	/** @var string */
38
-	private $scope;
39
-	/** @var string */
40
-	private $verified;
33
+    /** @var string */
34
+    private $name;
35
+    /** @var string */
36
+    private $value;
37
+    /** @var string */
38
+    private $scope;
39
+    /** @var string */
40
+    private $verified;
41 41
 
42
-	public function __construct(string $name, string $value, string $scope, string $verified) {
43
-		$this->name = $name;
44
-		$this->value = $value;
45
-		$this->scope = $scope;
46
-		$this->verified = $verified;
47
-	}
42
+    public function __construct(string $name, string $value, string $scope, string $verified) {
43
+        $this->name = $name;
44
+        $this->value = $value;
45
+        $this->scope = $scope;
46
+        $this->verified = $verified;
47
+    }
48 48
 
49
-	public function jsonSerialize() {
50
-		return [
51
-			'name' => $this->getName(),
52
-			'value' => $this->getValue(),
53
-			'scope' => $this->getScope(),
54
-			'verified' => $this->getVerified()
55
-		];
56
-	}
49
+    public function jsonSerialize() {
50
+        return [
51
+            'name' => $this->getName(),
52
+            'value' => $this->getValue(),
53
+            'scope' => $this->getScope(),
54
+            'verified' => $this->getVerified()
55
+        ];
56
+    }
57 57
 
58
-	/**
59
-	 * Set the value of a property
60
-	 *
61
-	 * @since 15.0.0
62
-	 *
63
-	 * @param string $value
64
-	 * @return IAccountProperty
65
-	 */
66
-	public function setValue(string $value): IAccountProperty {
67
-		$this->value = $value;
68
-		return $this;
69
-	}
58
+    /**
59
+     * Set the value of a property
60
+     *
61
+     * @since 15.0.0
62
+     *
63
+     * @param string $value
64
+     * @return IAccountProperty
65
+     */
66
+    public function setValue(string $value): IAccountProperty {
67
+        $this->value = $value;
68
+        return $this;
69
+    }
70 70
 
71
-	/**
72
-	 * Set the scope of a property
73
-	 *
74
-	 * @since 15.0.0
75
-	 *
76
-	 * @param string $scope
77
-	 * @return IAccountProperty
78
-	 */
79
-	public function setScope(string $scope): IAccountProperty {
80
-		$this->scope = $scope;
81
-		return $this;
82
-	}
71
+    /**
72
+     * Set the scope of a property
73
+     *
74
+     * @since 15.0.0
75
+     *
76
+     * @param string $scope
77
+     * @return IAccountProperty
78
+     */
79
+    public function setScope(string $scope): IAccountProperty {
80
+        $this->scope = $scope;
81
+        return $this;
82
+    }
83 83
 
84
-	/**
85
-	 * Set the verification status of a property
86
-	 *
87
-	 * @since 15.0.0
88
-	 *
89
-	 * @param string $verified
90
-	 * @return IAccountProperty
91
-	 */
92
-	public function setVerified(string $verified): IAccountProperty {
93
-		$this->verified = $verified;
94
-		return $this;
95
-	}
84
+    /**
85
+     * Set the verification status of a property
86
+     *
87
+     * @since 15.0.0
88
+     *
89
+     * @param string $verified
90
+     * @return IAccountProperty
91
+     */
92
+    public function setVerified(string $verified): IAccountProperty {
93
+        $this->verified = $verified;
94
+        return $this;
95
+    }
96 96
 
97
-	/**
98
-	 * Get the name of a property
99
-	 *
100
-	 * @since 15.0.0
101
-	 *
102
-	 * @return string
103
-	 */
104
-	public function getName(): string {
105
-		return $this->name;
106
-	}
97
+    /**
98
+     * Get the name of a property
99
+     *
100
+     * @since 15.0.0
101
+     *
102
+     * @return string
103
+     */
104
+    public function getName(): string {
105
+        return $this->name;
106
+    }
107 107
 
108
-	/**
109
-	 * Get the value of a property
110
-	 *
111
-	 * @since 15.0.0
112
-	 *
113
-	 * @return string
114
-	 */
115
-	public function getValue(): string {
116
-		return $this->value;
117
-	}
108
+    /**
109
+     * Get the value of a property
110
+     *
111
+     * @since 15.0.0
112
+     *
113
+     * @return string
114
+     */
115
+    public function getValue(): string {
116
+        return $this->value;
117
+    }
118 118
 
119
-	/**
120
-	 * Get the scope of a property
121
-	 *
122
-	 * @since 15.0.0
123
-	 *
124
-	 * @return string
125
-	 */
126
-	public function getScope(): string {
127
-		return $this->scope;
128
-	}
119
+    /**
120
+     * Get the scope of a property
121
+     *
122
+     * @since 15.0.0
123
+     *
124
+     * @return string
125
+     */
126
+    public function getScope(): string {
127
+        return $this->scope;
128
+    }
129 129
 
130
-	/**
131
-	 * Get the verification status of a property
132
-	 *
133
-	 * @since 15.0.0
134
-	 *
135
-	 * @return string
136
-	 */
137
-	public function getVerified(): string {
138
-		return $this->verified;
139
-	}
130
+    /**
131
+     * Get the verification status of a property
132
+     *
133
+     * @since 15.0.0
134
+     *
135
+     * @return string
136
+     */
137
+    public function getVerified(): string {
138
+        return $this->verified;
139
+    }
140 140
 }
Please login to merge, or discard this patch.