From a874705308eb708e6277ae30e5c539459313fc61 Mon Sep 17 00:00:00 2001 From: Antoine Makdessi Date: Thu, 3 Dec 2020 14:13:06 +0100 Subject: [PATCH] Update lockable_trait.rst --- console/lockable_trait.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/console/lockable_trait.rst b/console/lockable_trait.rst index 7f751d09012..74c4c2a5870 100644 --- a/console/lockable_trait.rst +++ b/console/lockable_trait.rst @@ -38,6 +38,8 @@ that adds two convenient methods to lock and release commands:: // if not released explicitly, Symfony releases the lock // automatically when the execution of the command ends $this->release(); + + return 0; } }