From 35227c3ca5efbcf86529e4ca04170636862c647a Mon Sep 17 00:00:00 2001 From: Dave Supplee Date: Thu, 16 Aug 2018 17:09:14 -0400 Subject: [PATCH] update Breakpoint constants --- Debugger/src/Breakpoint.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Debugger/src/Breakpoint.php b/Debugger/src/Breakpoint.php index eb6fa5bab001..59e9c1ec95f4 100644 --- a/Debugger/src/Breakpoint.php +++ b/Debugger/src/Breakpoint.php @@ -18,8 +18,8 @@ namespace Google\Cloud\Debugger; use Google\Cloud\Core\ArrayTrait; -use Google\Cloud\Debugger\V2\Breakpoint_Action; -use Google\Cloud\Debugger\V2\Breakpoint_LogLevel; +use Google\Cloud\Debugger\V2\Breakpoint\Action; +use Google\Cloud\Debugger\V2\Breakpoint\LogLevel; /** * This plain PHP class represents a debugger breakpoint resource. @@ -46,11 +46,11 @@ class Breakpoint { use ArrayTrait; - const ACTION_CAPTURE = Breakpoint_Action::CAPTURE; - const ACTION_LOG = Breakpoint_Action::LOG; - const LOG_LEVEL_INFO = Breakpoint_LogLevel::INFO; - const LOG_LEVEL_WARNING = Breakpoint_LogLevel::WARNING; - const LOG_LEVEL_ERROR = Breakpoint_LogLevel::ERROR; + const ACTION_CAPTURE = Action::CAPTURE; + const ACTION_LOG = Action::LOG; + const LOG_LEVEL_INFO = LogLevel::INFO; + const LOG_LEVEL_WARNING = LogLevel::WARNING; + const LOG_LEVEL_ERROR = LogLevel::ERROR; /** * @var string Breakpoint identifier, unique in the scope of the debuggee.