Passed
Push — master ( 0571fd...48a8f0 )
by Blizzz
19:19 queued 08:57
created
core/Command/Base.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -73,19 +73,19 @@
 block discarded – undo
73 73
 			default:
74 74
 				foreach ($items as $key => $item) {
75 75
 					if (is_array($item)) {
76
-						$output->writeln($prefix . $key . ':');
77
-						$this->writeArrayInOutputFormat($input, $output, $item, '  ' . $prefix);
76
+						$output->writeln($prefix.$key.':');
77
+						$this->writeArrayInOutputFormat($input, $output, $item, '  '.$prefix);
78 78
 						continue;
79 79
 					}
80 80
 					if (!is_int($key) || ListCommand::class === get_class($this)) {
81 81
 						$value = $this->valueToString($item);
82 82
 						if (!is_null($value)) {
83
-							$output->writeln($prefix . $key . ': ' . $value);
83
+							$output->writeln($prefix.$key.': '.$value);
84 84
 						} else {
85
-							$output->writeln($prefix . $key);
85
+							$output->writeln($prefix.$key);
86 86
 						}
87 87
 					} else {
88
-						$output->writeln($prefix . $this->valueToString($item));
88
+						$output->writeln($prefix.$this->valueToString($item));
89 89
 					}
90 90
 				}
91 91
 				break;
Please login to merge, or discard this patch.
Indentation   +154 added lines, -154 removed lines patch added patch discarded remove patch
@@ -34,158 +34,158 @@
 block discarded – undo
34 34
 use Symfony\Component\Console\Output\OutputInterface;
35 35
 
36 36
 class Base extends Command implements CompletionAwareInterface {
37
-	public const OUTPUT_FORMAT_PLAIN = 'plain';
38
-	public const OUTPUT_FORMAT_JSON = 'json';
39
-	public const OUTPUT_FORMAT_JSON_PRETTY = 'json_pretty';
40
-
41
-	protected $defaultOutputFormat = self::OUTPUT_FORMAT_PLAIN;
42
-
43
-	/** @var boolean */
44
-	private $php_pcntl_signal = false;
45
-
46
-	/** @var boolean */
47
-	private $interrupted = false;
48
-
49
-	protected function configure() {
50
-		$this
51
-			->addOption(
52
-				'output',
53
-				null,
54
-				InputOption::VALUE_OPTIONAL,
55
-				'Output format (plain, json or json_pretty, default is plain)',
56
-				$this->defaultOutputFormat
57
-			)
58
-		;
59
-	}
60
-
61
-	/**
62
-	 * @param InputInterface $input
63
-	 * @param OutputInterface $output
64
-	 * @param array $items
65
-	 * @param string $prefix
66
-	 */
67
-	protected function writeArrayInOutputFormat(InputInterface $input, OutputInterface $output, $items, $prefix = '  - ') {
68
-		switch ($input->getOption('output')) {
69
-			case self::OUTPUT_FORMAT_JSON:
70
-				$output->writeln(json_encode($items));
71
-				break;
72
-			case self::OUTPUT_FORMAT_JSON_PRETTY:
73
-				$output->writeln(json_encode($items, JSON_PRETTY_PRINT));
74
-				break;
75
-			default:
76
-				foreach ($items as $key => $item) {
77
-					if (is_array($item)) {
78
-						$output->writeln($prefix . $key . ':');
79
-						$this->writeArrayInOutputFormat($input, $output, $item, '  ' . $prefix);
80
-						continue;
81
-					}
82
-					if (!is_int($key) || ListCommand::class === get_class($this)) {
83
-						$value = $this->valueToString($item);
84
-						if (!is_null($value)) {
85
-							$output->writeln($prefix . $key . ': ' . $value);
86
-						} else {
87
-							$output->writeln($prefix . $key);
88
-						}
89
-					} else {
90
-						$output->writeln($prefix . $this->valueToString($item));
91
-					}
92
-				}
93
-				break;
94
-		}
95
-	}
96
-
97
-	/**
98
-	 * @param InputInterface $input
99
-	 * @param OutputInterface $output
100
-	 * @param mixed $item
101
-	 */
102
-	protected function writeMixedInOutputFormat(InputInterface $input, OutputInterface $output, $item) {
103
-		if (is_array($item)) {
104
-			$this->writeArrayInOutputFormat($input, $output, $item, '');
105
-			return;
106
-		}
107
-
108
-		switch ($input->getOption('output')) {
109
-			case self::OUTPUT_FORMAT_JSON:
110
-				$output->writeln(json_encode($item));
111
-				break;
112
-			case self::OUTPUT_FORMAT_JSON_PRETTY:
113
-				$output->writeln(json_encode($item, JSON_PRETTY_PRINT));
114
-				break;
115
-			default:
116
-				$output->writeln($this->valueToString($item, false));
117
-				break;
118
-		}
119
-	}
120
-
121
-	protected function valueToString($value, $returnNull = true) {
122
-		if ($value === false) {
123
-			return 'false';
124
-		} elseif ($value === true) {
125
-			return 'true';
126
-		} elseif ($value === null) {
127
-			return $returnNull ? null : 'null';
128
-		} else {
129
-			return $value;
130
-		}
131
-	}
132
-
133
-	/**
134
-	 * Throw InterruptedException when interrupted by user
135
-	 *
136
-	 * @throws InterruptedException
137
-	 */
138
-	protected function abortIfInterrupted() {
139
-		if ($this->php_pcntl_signal === false) {
140
-			return;
141
-		}
142
-
143
-		pcntl_signal_dispatch();
144
-
145
-		if ($this->interrupted === true) {
146
-			throw new InterruptedException('Command interrupted by user');
147
-		}
148
-	}
149
-
150
-	/**
151
-	 * Changes the status of the command to "interrupted" if ctrl-c has been pressed
152
-	 *
153
-	 * Gives a chance to the command to properly terminate what it's doing
154
-	 */
155
-	protected function cancelOperation() {
156
-		$this->interrupted = true;
157
-	}
158
-
159
-	public function run(InputInterface $input, OutputInterface $output) {
160
-		// check if the php pcntl_signal functions are accessible
161
-		$this->php_pcntl_signal = function_exists('pcntl_signal');
162
-		if ($this->php_pcntl_signal) {
163
-			// Collect interrupts and notify the running command
164
-			pcntl_signal(SIGTERM, [$this, 'cancelOperation']);
165
-			pcntl_signal(SIGINT, [$this, 'cancelOperation']);
166
-		}
167
-
168
-		return parent::run($input, $output);
169
-	}
170
-
171
-	/**
172
-	 * @param string $optionName
173
-	 * @param CompletionContext $context
174
-	 * @return string[]
175
-	 */
176
-	public function completeOptionValues($optionName, CompletionContext $context) {
177
-		if ($optionName === 'output') {
178
-			return ['plain', 'json', 'json_pretty'];
179
-		}
180
-		return [];
181
-	}
182
-
183
-	/**
184
-	 * @param string $argumentName
185
-	 * @param CompletionContext $context
186
-	 * @return string[]
187
-	 */
188
-	public function completeArgumentValues($argumentName, CompletionContext $context) {
189
-		return [];
190
-	}
37
+    public const OUTPUT_FORMAT_PLAIN = 'plain';
38
+    public const OUTPUT_FORMAT_JSON = 'json';
39
+    public const OUTPUT_FORMAT_JSON_PRETTY = 'json_pretty';
40
+
41
+    protected $defaultOutputFormat = self::OUTPUT_FORMAT_PLAIN;
42
+
43
+    /** @var boolean */
44
+    private $php_pcntl_signal = false;
45
+
46
+    /** @var boolean */
47
+    private $interrupted = false;
48
+
49
+    protected function configure() {
50
+        $this
51
+            ->addOption(
52
+                'output',
53
+                null,
54
+                InputOption::VALUE_OPTIONAL,
55
+                'Output format (plain, json or json_pretty, default is plain)',
56
+                $this->defaultOutputFormat
57
+            )
58
+        ;
59
+    }
60
+
61
+    /**
62
+     * @param InputInterface $input
63
+     * @param OutputInterface $output
64
+     * @param array $items
65
+     * @param string $prefix
66
+     */
67
+    protected function writeArrayInOutputFormat(InputInterface $input, OutputInterface $output, $items, $prefix = '  - ') {
68
+        switch ($input->getOption('output')) {
69
+            case self::OUTPUT_FORMAT_JSON:
70
+                $output->writeln(json_encode($items));
71
+                break;
72
+            case self::OUTPUT_FORMAT_JSON_PRETTY:
73
+                $output->writeln(json_encode($items, JSON_PRETTY_PRINT));
74
+                break;
75
+            default:
76
+                foreach ($items as $key => $item) {
77
+                    if (is_array($item)) {
78
+                        $output->writeln($prefix . $key . ':');
79
+                        $this->writeArrayInOutputFormat($input, $output, $item, '  ' . $prefix);
80
+                        continue;
81
+                    }
82
+                    if (!is_int($key) || ListCommand::class === get_class($this)) {
83
+                        $value = $this->valueToString($item);
84
+                        if (!is_null($value)) {
85
+                            $output->writeln($prefix . $key . ': ' . $value);
86
+                        } else {
87
+                            $output->writeln($prefix . $key);
88
+                        }
89
+                    } else {
90
+                        $output->writeln($prefix . $this->valueToString($item));
91
+                    }
92
+                }
93
+                break;
94
+        }
95
+    }
96
+
97
+    /**
98
+     * @param InputInterface $input
99
+     * @param OutputInterface $output
100
+     * @param mixed $item
101
+     */
102
+    protected function writeMixedInOutputFormat(InputInterface $input, OutputInterface $output, $item) {
103
+        if (is_array($item)) {
104
+            $this->writeArrayInOutputFormat($input, $output, $item, '');
105
+            return;
106
+        }
107
+
108
+        switch ($input->getOption('output')) {
109
+            case self::OUTPUT_FORMAT_JSON:
110
+                $output->writeln(json_encode($item));
111
+                break;
112
+            case self::OUTPUT_FORMAT_JSON_PRETTY:
113
+                $output->writeln(json_encode($item, JSON_PRETTY_PRINT));
114
+                break;
115
+            default:
116
+                $output->writeln($this->valueToString($item, false));
117
+                break;
118
+        }
119
+    }
120
+
121
+    protected function valueToString($value, $returnNull = true) {
122
+        if ($value === false) {
123
+            return 'false';
124
+        } elseif ($value === true) {
125
+            return 'true';
126
+        } elseif ($value === null) {
127
+            return $returnNull ? null : 'null';
128
+        } else {
129
+            return $value;
130
+        }
131
+    }
132
+
133
+    /**
134
+     * Throw InterruptedException when interrupted by user
135
+     *
136
+     * @throws InterruptedException
137
+     */
138
+    protected function abortIfInterrupted() {
139
+        if ($this->php_pcntl_signal === false) {
140
+            return;
141
+        }
142
+
143
+        pcntl_signal_dispatch();
144
+
145
+        if ($this->interrupted === true) {
146
+            throw new InterruptedException('Command interrupted by user');
147
+        }
148
+    }
149
+
150
+    /**
151
+     * Changes the status of the command to "interrupted" if ctrl-c has been pressed
152
+     *
153
+     * Gives a chance to the command to properly terminate what it's doing
154
+     */
155
+    protected function cancelOperation() {
156
+        $this->interrupted = true;
157
+    }
158
+
159
+    public function run(InputInterface $input, OutputInterface $output) {
160
+        // check if the php pcntl_signal functions are accessible
161
+        $this->php_pcntl_signal = function_exists('pcntl_signal');
162
+        if ($this->php_pcntl_signal) {
163
+            // Collect interrupts and notify the running command
164
+            pcntl_signal(SIGTERM, [$this, 'cancelOperation']);
165
+            pcntl_signal(SIGINT, [$this, 'cancelOperation']);
166
+        }
167
+
168
+        return parent::run($input, $output);
169
+    }
170
+
171
+    /**
172
+     * @param string $optionName
173
+     * @param CompletionContext $context
174
+     * @return string[]
175
+     */
176
+    public function completeOptionValues($optionName, CompletionContext $context) {
177
+        if ($optionName === 'output') {
178
+            return ['plain', 'json', 'json_pretty'];
179
+        }
180
+        return [];
181
+    }
182
+
183
+    /**
184
+     * @param string $argumentName
185
+     * @param CompletionContext $context
186
+     * @return string[]
187
+     */
188
+    public function completeArgumentValues($argumentName, CompletionContext $context) {
189
+        return [];
190
+    }
191 191
 }
Please login to merge, or discard this patch.
lib/public/Files/Config/IMountProviderCollection.php 1 patch
Indentation   +44 added lines, -44 removed lines patch added patch discarded remove patch
@@ -30,53 +30,53 @@
 block discarded – undo
30 30
  * @since 8.0.0
31 31
  */
32 32
 interface IMountProviderCollection {
33
-	/**
34
-	 * Get all configured mount points for the user
35
-	 *
36
-	 * @param \OCP\IUser $user
37
-	 * @return \OCP\Files\Mount\IMountPoint[]
38
-	 * @since 8.0.0
39
-	 */
40
-	public function getMountsForUser(IUser $user);
33
+    /**
34
+     * Get all configured mount points for the user
35
+     *
36
+     * @param \OCP\IUser $user
37
+     * @return \OCP\Files\Mount\IMountPoint[]
38
+     * @since 8.0.0
39
+     */
40
+    public function getMountsForUser(IUser $user);
41 41
 
42
-	/**
43
-	 * Get the configured home mount for this user
44
-	 *
45
-	 * @param \OCP\IUser $user
46
-	 * @return \OCP\Files\Mount\IMountPoint
47
-	 * @since 9.1.0
48
-	 */
49
-	public function getHomeMountForUser(IUser $user);
42
+    /**
43
+     * Get the configured home mount for this user
44
+     *
45
+     * @param \OCP\IUser $user
46
+     * @return \OCP\Files\Mount\IMountPoint
47
+     * @since 9.1.0
48
+     */
49
+    public function getHomeMountForUser(IUser $user);
50 50
 
51
-	/**
52
-	 * Add a provider for mount points
53
-	 *
54
-	 * @param \OCP\Files\Config\IMountProvider $provider
55
-	 * @since 8.0.0
56
-	 */
57
-	public function registerProvider(IMountProvider $provider);
51
+    /**
52
+     * Add a provider for mount points
53
+     *
54
+     * @param \OCP\Files\Config\IMountProvider $provider
55
+     * @since 8.0.0
56
+     */
57
+    public function registerProvider(IMountProvider $provider);
58 58
 
59
-	/**
60
-	 * Add a filter for mounts
61
-	 *
62
-	 * @param callable $filter (IMountPoint $mountPoint, IUser $user) => boolean
63
-	 * @since 14.0.0
64
-	 */
65
-	public function registerMountFilter(callable $filter);
59
+    /**
60
+     * Add a filter for mounts
61
+     *
62
+     * @param callable $filter (IMountPoint $mountPoint, IUser $user) => boolean
63
+     * @since 14.0.0
64
+     */
65
+    public function registerMountFilter(callable $filter);
66 66
 
67
-	/**
68
-	 * Add a provider for home mount points
69
-	 *
70
-	 * @param \OCP\Files\Config\IHomeMountProvider $provider
71
-	 * @since 9.1.0
72
-	 */
73
-	public function registerHomeProvider(IHomeMountProvider $provider);
67
+    /**
68
+     * Add a provider for home mount points
69
+     *
70
+     * @param \OCP\Files\Config\IHomeMountProvider $provider
71
+     * @since 9.1.0
72
+     */
73
+    public function registerHomeProvider(IHomeMountProvider $provider);
74 74
 
75
-	/**
76
-	 * Get the mount cache which can be used to search for mounts without setting up the filesystem
77
-	 *
78
-	 * @return IUserMountCache
79
-	 * @since 9.0.0
80
-	 */
81
-	public function getMountCache();
75
+    /**
76
+     * Get the mount cache which can be used to search for mounts without setting up the filesystem
77
+     *
78
+     * @return IUserMountCache
79
+     * @since 9.0.0
80
+     */
81
+    public function getMountCache();
82 82
 }
Please login to merge, or discard this patch.
lib/public/AppFramework/Http/StrictEvalContentSecurityPolicy.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -42,10 +42,10 @@
 block discarded – undo
42 42
  */
43 43
 class StrictEvalContentSecurityPolicy extends ContentSecurityPolicy {
44 44
 
45
-	/**
46
-	 * @since 14.0.0
47
-	 */
48
-	public function __construct() {
49
-		$this->evalScriptAllowed = false;
50
-	}
45
+    /**
46
+     * @since 14.0.0
47
+     */
48
+    public function __construct() {
49
+        $this->evalScriptAllowed = false;
50
+    }
51 51
 }
Please login to merge, or discard this patch.
apps/dav/lib/Migration/Version1006Date20180619154313.php 1 patch
Indentation   +53 added lines, -53 removed lines patch added patch discarded remove patch
@@ -11,61 +11,61 @@
 block discarded – undo
11 11
  */
12 12
 class Version1006Date20180619154313 extends SimpleMigrationStep {
13 13
 
14
-	/**
15
-	 * @param IOutput $output
16
-	 * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
17
-	 * @param array $options
18
-	 * @return null|ISchemaWrapper
19
-	 * @since 13.0.0
20
-	 */
21
-	public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) {
22
-		/** @var ISchemaWrapper $schema */
23
-		$schema = $schemaClosure();
14
+    /**
15
+     * @param IOutput $output
16
+     * @param \Closure $schemaClosure The `\Closure` returns a `ISchemaWrapper`
17
+     * @param array $options
18
+     * @return null|ISchemaWrapper
19
+     * @since 13.0.0
20
+     */
21
+    public function changeSchema(IOutput $output, \Closure $schemaClosure, array $options) {
22
+        /** @var ISchemaWrapper $schema */
23
+        $schema = $schemaClosure();
24 24
 
25
-		if (!$schema->hasTable('calendar_invitations')) {
26
-			$table = $schema->createTable('calendar_invitations');
25
+        if (!$schema->hasTable('calendar_invitations')) {
26
+            $table = $schema->createTable('calendar_invitations');
27 27
 
28
-			$table->addColumn('id', Type::BIGINT, [
29
-				'autoincrement' => true,
30
-				'notnull' => true,
31
-				'length' => 11,
32
-				'unsigned' => true,
33
-			]);
34
-			$table->addColumn('uid', Type::STRING, [
35
-				'notnull' => true,
36
-				'length' => 255,
37
-			]);
38
-			$table->addColumn('recurrenceid', Type::STRING, [
39
-				'notnull' => false,
40
-				'length' => 255,
41
-			]);
42
-			$table->addColumn('attendee', Type::STRING, [
43
-				'notnull' => true,
44
-				'length' => 255,
45
-			]);
46
-			$table->addColumn('organizer', Type::STRING, [
47
-				'notnull' => true,
48
-				'length' => 255,
49
-			]);
50
-			$table->addColumn('sequence', Type::BIGINT, [
51
-				'notnull' => false,
52
-				'length' => 11,
53
-				'unsigned' => true,
54
-			]);
55
-			$table->addColumn('token', Type::STRING, [
56
-				'notnull' => true,
57
-				'length' => 60,
58
-			]);
59
-			$table->addColumn('expiration', Type::BIGINT, [
60
-				'notnull' => true,
61
-				'length' => 11,
62
-				'unsigned' => true,
63
-			]);
28
+            $table->addColumn('id', Type::BIGINT, [
29
+                'autoincrement' => true,
30
+                'notnull' => true,
31
+                'length' => 11,
32
+                'unsigned' => true,
33
+            ]);
34
+            $table->addColumn('uid', Type::STRING, [
35
+                'notnull' => true,
36
+                'length' => 255,
37
+            ]);
38
+            $table->addColumn('recurrenceid', Type::STRING, [
39
+                'notnull' => false,
40
+                'length' => 255,
41
+            ]);
42
+            $table->addColumn('attendee', Type::STRING, [
43
+                'notnull' => true,
44
+                'length' => 255,
45
+            ]);
46
+            $table->addColumn('organizer', Type::STRING, [
47
+                'notnull' => true,
48
+                'length' => 255,
49
+            ]);
50
+            $table->addColumn('sequence', Type::BIGINT, [
51
+                'notnull' => false,
52
+                'length' => 11,
53
+                'unsigned' => true,
54
+            ]);
55
+            $table->addColumn('token', Type::STRING, [
56
+                'notnull' => true,
57
+                'length' => 60,
58
+            ]);
59
+            $table->addColumn('expiration', Type::BIGINT, [
60
+                'notnull' => true,
61
+                'length' => 11,
62
+                'unsigned' => true,
63
+            ]);
64 64
 
65
-			$table->setPrimaryKey(['id']);
66
-			$table->addIndex(['token'], 'calendar_invitation_tokens');
65
+            $table->setPrimaryKey(['id']);
66
+            $table->addIndex(['token'], 'calendar_invitation_tokens');
67 67
 
68
-			return $schema;
69
-		}
70
-	}
68
+            return $schema;
69
+        }
70
+    }
71 71
 }
Please login to merge, or discard this patch.
apps/dav/lib/BackgroundJob/CleanupInvitationTokenJob.php 1 patch
Indentation   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -30,24 +30,24 @@
 block discarded – undo
30 30
 
31 31
 class CleanupInvitationTokenJob extends TimedJob {
32 32
 
33
-	/** @var IDBConnection  */
34
-	private $db;
35
-
36
-	/** @var ITimeFactory */
37
-	private $timeFactory;
38
-
39
-	public function __construct(IDBConnection $db, ITimeFactory $timeFactory) {
40
-		$this->db = $db;
41
-		$this->timeFactory = $timeFactory;
42
-
43
-		$this->setInterval(60 * 60 * 24);
44
-	}
45
-
46
-	public function run($argument) {
47
-		$query = $this->db->getQueryBuilder();
48
-		$query->delete('calendar_invitations')
49
-			->where($query->expr()->lt('expiration',
50
-				$query->createNamedParameter($this->timeFactory->getTime())))
51
-			->execute();
52
-	}
33
+    /** @var IDBConnection  */
34
+    private $db;
35
+
36
+    /** @var ITimeFactory */
37
+    private $timeFactory;
38
+
39
+    public function __construct(IDBConnection $db, ITimeFactory $timeFactory) {
40
+        $this->db = $db;
41
+        $this->timeFactory = $timeFactory;
42
+
43
+        $this->setInterval(60 * 60 * 24);
44
+    }
45
+
46
+    public function run($argument) {
47
+        $query = $this->db->getQueryBuilder();
48
+        $query->delete('calendar_invitations')
49
+            ->where($query->expr()->lt('expiration',
50
+                $query->createNamedParameter($this->timeFactory->getTime())))
51
+            ->execute();
52
+    }
53 53
 }
Please login to merge, or discard this patch.
lib/public/L10N/ILanguageIterator.php 1 patch
Indentation   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -44,31 +44,31 @@
 block discarded – undo
44 44
  */
45 45
 interface ILanguageIterator extends \Iterator {
46 46
 
47
-	/**
48
-	 * Return the current element
49
-	 *
50
-	 * @since 14.0.0
51
-	 */
52
-	public function current(): string;
47
+    /**
48
+     * Return the current element
49
+     *
50
+     * @since 14.0.0
51
+     */
52
+    public function current(): string;
53 53
 
54
-	/**
55
-	 * Move forward to next element
56
-	 *
57
-	 * @since 14.0.0
58
-	 */
59
-	public function next();
54
+    /**
55
+     * Move forward to next element
56
+     *
57
+     * @since 14.0.0
58
+     */
59
+    public function next();
60 60
 
61
-	/**
62
-	 * Return the key of the current element
63
-	 *
64
-	 * @since 14.0.0
65
-	 */
66
-	public function key():int;
61
+    /**
62
+     * Return the key of the current element
63
+     *
64
+     * @since 14.0.0
65
+     */
66
+    public function key():int;
67 67
 
68
-	/**
69
-	 * Checks if current position is valid
70
-	 *
71
-	 * @since 14.0.0
72
-	 */
73
-	public function valid():bool;
68
+    /**
69
+     * Checks if current position is valid
70
+     *
71
+     * @since 14.0.0
72
+     */
73
+    public function valid():bool;
74 74
 }
Please login to merge, or discard this patch.
apps/files/appinfo/app.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -40,28 +40,28 @@
 block discarded – undo
40 40
 $templateManager->registerTemplate('application/vnd.oasis.opendocument.spreadsheet', 'core/templates/filetemplates/template.ods');
41 41
 
42 42
 \OCA\Files\App::getNavigationManager()->add([
43
-	'id'      => 'files',
44
-	'appname' => 'files',
45
-	'script'  => 'list.php',
46
-	'order'   => 0,
47
-	'name'    => $l->t('All files')
43
+    'id'      => 'files',
44
+    'appname' => 'files',
45
+    'script'  => 'list.php',
46
+    'order'   => 0,
47
+    'name'    => $l->t('All files')
48 48
 ]);
49 49
 
50 50
 \OCA\Files\App::getNavigationManager()->add([
51
-	'id'      => 'recent',
52
-	'appname' => 'files',
53
-	'script'  => 'recentlist.php',
54
-	'order'   => 2,
55
-	'name'    => $l->t('Recent')
51
+    'id'      => 'recent',
52
+    'appname' => 'files',
53
+    'script'  => 'recentlist.php',
54
+    'order'   => 2,
55
+    'name'    => $l->t('Recent')
56 56
 ]);
57 57
 
58 58
 \OCA\Files\App::getNavigationManager()->add([
59
-	'id'            => 'favorites',
60
-	'appname'       => 'files',
61
-	'script'        => 'simplelist.php',
62
-	'order'         => 5,
63
-	'name'          => $l->t('Favorites'),
64
-	'expandedState' => 'show_Quick_Access'
59
+    'id'            => 'favorites',
60
+    'appname'       => 'files',
61
+    'script'        => 'simplelist.php',
62
+    'order'         => 5,
63
+    'name'          => $l->t('Favorites'),
64
+    'expandedState' => 'show_Quick_Access'
65 65
 ]);
66 66
 
67 67
 \OCP\Util::connectHook('\OCP\Config', 'js', '\OCA\Files\App', 'extendJsConfig');
Please login to merge, or discard this patch.
apps/files/lib/Activity/Filter/FileChanges.php 1 patch
Indentation   +60 added lines, -60 removed lines patch added patch discarded remove patch
@@ -30,72 +30,72 @@
 block discarded – undo
30 30
 
31 31
 class FileChanges implements IFilter {
32 32
 
33
-	/** @var IL10N */
34
-	protected $l;
33
+    /** @var IL10N */
34
+    protected $l;
35 35
 
36
-	/** @var IURLGenerator */
37
-	protected $url;
36
+    /** @var IURLGenerator */
37
+    protected $url;
38 38
 
39
-	/**
40
-	 * @param IL10N $l
41
-	 * @param IURLGenerator $url
42
-	 */
43
-	public function __construct(IL10N $l, IURLGenerator $url) {
44
-		$this->l = $l;
45
-		$this->url = $url;
46
-	}
39
+    /**
40
+     * @param IL10N $l
41
+     * @param IURLGenerator $url
42
+     */
43
+    public function __construct(IL10N $l, IURLGenerator $url) {
44
+        $this->l = $l;
45
+        $this->url = $url;
46
+    }
47 47
 
48
-	/**
49
-	 * @return string Lowercase a-z only identifier
50
-	 * @since 11.0.0
51
-	 */
52
-	public function getIdentifier() {
53
-		return 'files';
54
-	}
48
+    /**
49
+     * @return string Lowercase a-z only identifier
50
+     * @since 11.0.0
51
+     */
52
+    public function getIdentifier() {
53
+        return 'files';
54
+    }
55 55
 
56
-	/**
57
-	 * @return string A translated string
58
-	 * @since 11.0.0
59
-	 */
60
-	public function getName() {
61
-		return $this->l->t('File changes');
62
-	}
56
+    /**
57
+     * @return string A translated string
58
+     * @since 11.0.0
59
+     */
60
+    public function getName() {
61
+        return $this->l->t('File changes');
62
+    }
63 63
 
64
-	/**
65
-	 * @return int
66
-	 * @since 11.0.0
67
-	 */
68
-	public function getPriority() {
69
-		return 30;
70
-	}
64
+    /**
65
+     * @return int
66
+     * @since 11.0.0
67
+     */
68
+    public function getPriority() {
69
+        return 30;
70
+    }
71 71
 
72
-	/**
73
-	 * @return string Full URL to an icon, empty string when none is given
74
-	 * @since 11.0.0
75
-	 */
76
-	public function getIcon() {
77
-		return $this->url->getAbsoluteURL($this->url->imagePath('core', 'places/files.svg'));
78
-	}
72
+    /**
73
+     * @return string Full URL to an icon, empty string when none is given
74
+     * @since 11.0.0
75
+     */
76
+    public function getIcon() {
77
+        return $this->url->getAbsoluteURL($this->url->imagePath('core', 'places/files.svg'));
78
+    }
79 79
 
80
-	/**
81
-	 * @param string[] $types
82
-	 * @return string[] An array of allowed apps from which activities should be displayed
83
-	 * @since 11.0.0
84
-	 */
85
-	public function filterTypes(array $types) {
86
-		return array_intersect([
87
-			'file_created',
88
-			'file_changed',
89
-			'file_deleted',
90
-			'file_restored',
91
-		], $types);
92
-	}
80
+    /**
81
+     * @param string[] $types
82
+     * @return string[] An array of allowed apps from which activities should be displayed
83
+     * @since 11.0.0
84
+     */
85
+    public function filterTypes(array $types) {
86
+        return array_intersect([
87
+            'file_created',
88
+            'file_changed',
89
+            'file_deleted',
90
+            'file_restored',
91
+        ], $types);
92
+    }
93 93
 
94
-	/**
95
-	 * @return string[] An array of allowed apps from which activities should be displayed
96
-	 * @since 11.0.0
97
-	 */
98
-	public function allowedApps() {
99
-		return ['files'];
100
-	}
94
+    /**
95
+     * @return string[] An array of allowed apps from which activities should be displayed
96
+     * @since 11.0.0
97
+     */
98
+    public function allowedApps() {
99
+        return ['files'];
100
+    }
101 101
 }
Please login to merge, or discard this patch.
apps/dav/lib/CalDAV/Activity/Filter/Calendar.php 1 patch
Indentation   +53 added lines, -53 removed lines patch added patch discarded remove patch
@@ -30,65 +30,65 @@
 block discarded – undo
30 30
 
31 31
 class Calendar implements IFilter {
32 32
 
33
-	/** @var IL10N */
34
-	protected $l;
33
+    /** @var IL10N */
34
+    protected $l;
35 35
 
36
-	/** @var IURLGenerator */
37
-	protected $url;
36
+    /** @var IURLGenerator */
37
+    protected $url;
38 38
 
39
-	public function __construct(IL10N $l, IURLGenerator $url) {
40
-		$this->l = $l;
41
-		$this->url = $url;
42
-	}
39
+    public function __construct(IL10N $l, IURLGenerator $url) {
40
+        $this->l = $l;
41
+        $this->url = $url;
42
+    }
43 43
 
44
-	/**
45
-	 * @return string Lowercase a-z and underscore only identifier
46
-	 * @since 11.0.0
47
-	 */
48
-	public function getIdentifier() {
49
-		return 'calendar';
50
-	}
44
+    /**
45
+     * @return string Lowercase a-z and underscore only identifier
46
+     * @since 11.0.0
47
+     */
48
+    public function getIdentifier() {
49
+        return 'calendar';
50
+    }
51 51
 
52
-	/**
53
-	 * @return string A translated string
54
-	 * @since 11.0.0
55
-	 */
56
-	public function getName() {
57
-		return $this->l->t('Calendar');
58
-	}
52
+    /**
53
+     * @return string A translated string
54
+     * @since 11.0.0
55
+     */
56
+    public function getName() {
57
+        return $this->l->t('Calendar');
58
+    }
59 59
 
60
-	/**
61
-	 * @return int whether the filter should be rather on the top or bottom of
62
-	 * the admin section. The filters are arranged in ascending order of the
63
-	 * priority values. It is required to return a value between 0 and 100.
64
-	 * @since 11.0.0
65
-	 */
66
-	public function getPriority() {
67
-		return 40;
68
-	}
60
+    /**
61
+     * @return int whether the filter should be rather on the top or bottom of
62
+     * the admin section. The filters are arranged in ascending order of the
63
+     * priority values. It is required to return a value between 0 and 100.
64
+     * @since 11.0.0
65
+     */
66
+    public function getPriority() {
67
+        return 40;
68
+    }
69 69
 
70
-	/**
71
-	 * @return string Full URL to an icon, empty string when none is given
72
-	 * @since 11.0.0
73
-	 */
74
-	public function getIcon() {
75
-		return $this->url->getAbsoluteURL($this->url->imagePath('core', 'places/calendar.svg'));
76
-	}
70
+    /**
71
+     * @return string Full URL to an icon, empty string when none is given
72
+     * @since 11.0.0
73
+     */
74
+    public function getIcon() {
75
+        return $this->url->getAbsoluteURL($this->url->imagePath('core', 'places/calendar.svg'));
76
+    }
77 77
 
78
-	/**
79
-	 * @param string[] $types
80
-	 * @return string[] An array of allowed apps from which activities should be displayed
81
-	 * @since 11.0.0
82
-	 */
83
-	public function filterTypes(array $types) {
84
-		return array_intersect(['calendar', 'calendar_event'], $types);
85
-	}
78
+    /**
79
+     * @param string[] $types
80
+     * @return string[] An array of allowed apps from which activities should be displayed
81
+     * @since 11.0.0
82
+     */
83
+    public function filterTypes(array $types) {
84
+        return array_intersect(['calendar', 'calendar_event'], $types);
85
+    }
86 86
 
87
-	/**
88
-	 * @return string[] An array of allowed apps from which activities should be displayed
89
-	 * @since 11.0.0
90
-	 */
91
-	public function allowedApps() {
92
-		return [];
93
-	}
87
+    /**
88
+     * @return string[] An array of allowed apps from which activities should be displayed
89
+     * @since 11.0.0
90
+     */
91
+    public function allowedApps() {
92
+        return [];
93
+    }
94 94
 }
Please login to merge, or discard this patch.