Skip to content

Commit 5216437

Browse files
committed
Fixed missing trailing comma
1 parent cae9ba1 commit 5216437

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

tests/Adapter/Builder/LocalAdapterDefinitionBuilderTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,12 @@ public function provideValidOptions()
5858

5959
yield 'lazy_root_creation_enabled' => [[
6060
'directory' => __DIR__,
61-
'lazy_root_creation' => true
61+
'lazy_root_creation' => true,
6262
]];
6363

6464
yield 'lazy_root_creation_disabled' => [[
6565
'directory' => __DIR__,
66-
'lazy_root_creation' => false
66+
'lazy_root_creation' => false,
6767
]];
6868

6969
yield 'full' => [[
@@ -80,7 +80,7 @@ public function provideValidOptions()
8080
'private' => 0755,
8181
],
8282
],
83-
'lazy_root_creation' => true
83+
'lazy_root_creation' => true,
8484
]];
8585
}
8686

@@ -110,7 +110,7 @@ public function testOptionsBehavior()
110110
'lock' => LOCK_EX,
111111
'skip_links' => true,
112112
'permissions' => $permissions,
113-
'lazy_root_creation' => true
113+
'lazy_root_creation' => true,
114114
]);
115115

116116
$this->assertSame(LocalFilesystemAdapter::class, $definition->getClass());

0 commit comments

Comments
 (0)