Passed
Pull Request — master (#1587)
by René
04:20
created
tests/Unit/Db/VoteMapperTest.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
 	}
137 137
 
138 138
 	/**
139
-	* testUpdate
139
+	 * testUpdate
140 140
 	 */
141 141
 	public function testUpdate() {
142 142
 		foreach ($this->votes as &$vote) {
@@ -156,8 +156,8 @@  discard block
 block discarded – undo
156 156
 	}
157 157
 
158 158
 	/**
159
-	* tearDown
160
-	*/
159
+	 * tearDown
160
+	 */
161 161
 	public function tearDown(): void {
162 162
 		parent::tearDown();
163 163
 		foreach ($this->options as $option) {
Please login to merge, or discard this patch.
tests/Unit/Db/CommentMapperTest.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,8 +75,8 @@
 block discarded – undo
75 75
 	}
76 76
 
77 77
 	 /**
78
- 	 * testFind
79
- 	 */
78
+	  * testFind
79
+	  */
80 80
  	public function testFind() {
81 81
  		foreach ($this->comments as $comment) {
82 82
  			$this->assertInstanceOf(Comment::class, $this->commentMapper->find($comment->getId()));
Please login to merge, or discard this patch.
lib/Cron/JanitorCron.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
 		LogMapper $logMapper,
42 42
 		WatchMapper $watchMapper
43 43
 	) {
44
-        parent::__construct($time);
44
+		parent::__construct($time);
45 45
 		$this->logMapper = $logMapper;
46 46
 		$this->watchMapper = $watchMapper;
47 47
 		parent::setInterval(86400); // run once a day
Please login to merge, or discard this patch.