Skip to content

Commit 62bd419

Browse files
authored
Fix the missing semicolon (#453)
1 parent 1ea26b8 commit 62bd419

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/extend/service-provider.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ class CustomServiceProvider extends AbstractServiceProvider
3838
// custom logic here, for example:
3939
$this->container->resolving(SomeClass::class, function ($container) {
4040
return new SomeClass($container->make('some.binding'));
41-
})
41+
});
4242
}
4343

4444
public function boot(Container $container)

0 commit comments

Comments
 (0)