Skip to content

Commit a1c5ea2

Browse files
committed
chore: apply cs-fixer style changes
1 parent 23a8190 commit a1c5ea2

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

tests/Sabre/DAV/Browser/PluginTest.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
use DateTime;
88
use Sabre\DAV;
9-
use Sabre\HTTP;
109
use Sabre\DAV\Xml\Property\GetLastModified;
10+
use Sabre\HTTP;
1111

1212
class PluginTest extends DAV\AbstractServerTestCase
1313
{
@@ -204,7 +204,7 @@ public function testCollectionWithManyNodesGetSubdir()
204204
$dir = $this->server->tree->getNodeForPath('dir2');
205205
$dir->createDirectory('subdir');
206206
$maxNodes = 20; // directory + 20 files
207-
for ($i = 1; $i <= $maxNodes; $i++) {
207+
for ($i = 1; $i <= $maxNodes; ++$i) {
208208
$dir->createFile("file$i");
209209
}
210210

@@ -230,7 +230,6 @@ public function testCollectionWithManyNodesGetSubdir()
230230
self::assertTrue($lastSectionContainsNodes, 'Last section is listing Nodes (21)');
231231
}
232232

233-
234233
public function testCollectionNodesOrder()
235234
{
236235
$compareNodes = new \ReflectionMethod($this->plugin, 'compareNodes');

0 commit comments

Comments
 (0)