Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Breakpoint constants #1229

Merged
merged 1 commit into from
Aug 16, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions Debugger/src/Breakpoint.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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.
Expand Down