Skip to content

Commit e651206

Browse files
authored
fix: mark Debugger deprecated (#8084)
1 parent c5c3064 commit e651206

30 files changed

Lines changed: 33 additions & 0 deletions

Debugger/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
* [API documentation](https://cloud.google.com/php/docs/reference/cloud-debugger/latest)
88

9+
**IMPORTANT**: This library has been deprecated. See [Cloud Debugger Deprecation][debugger-deprecation]
10+
11+
[debugger-deprecation]: https://cloud.google.com/stackdriver/docs/deprecations/debugger-deprecation
12+
913
**NOTE:** This repository is part of [Google Cloud PHP](https://github.com/googleapis/google-cloud-php). Any
1014
support requests, bug reports, or development contributions should be directed to
1115
that project.

Debugger/src/Agent.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
*
4141
* $agent = new Agent();
4242
* ```
43+
* @deprecated see https://cloud.google.com/stackdriver/docs/deprecations/debugger-deprecation
4344
*/
4445
class Agent
4546
{

Debugger/src/AliasContext.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
* @codingStandardsIgnoreStart
3333
* @see https://cloud.google.com/debugger/api/reference/rest/v2/Debuggee#aliascontext AliasContext model documentation
3434
* @codingStandardsIgnoreEnd
35+
* @deprecated see https://cloud.google.com/stackdriver/docs/deprecations/debugger-deprecation
3536
*/
3637
class AliasContext
3738
{

Debugger/src/Breakpoint.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
* @codingStandardsIgnoreStart
4242
* @see https://cloud.google.com/debugger/api/reference/rest/v2/debugger.debuggees.breakpoints#Breakpoint Breakpoint model documentation
4343
* @codingStandardsIgnoreEnd
44+
* @deprecated see https://cloud.google.com/stackdriver/docs/deprecations/debugger-deprecation
4445
*/
4546
class Breakpoint
4647
{

Debugger/src/BreakpointStorage/FileBreakpointStorage.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323

2424
/**
2525
* This implementation of BreakpointStorageInterface using a local file.
26+
* @deprecated see https://cloud.google.com/stackdriver/docs/deprecations/debugger-deprecation
2627
*/
2728
class FileBreakpointStorage implements BreakpointStorageInterface
2829
{

Debugger/src/BreakpointStorage/SysvBreakpointStorage.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
/**
2424
* This implementation of BreakpointStorageInterface using PHP's shared memory
2525
* provided by the [Semaphore Functions](http://php.net/manual/en/ref.sem.php).
26+
* @deprecated see https://cloud.google.com/stackdriver/docs/deprecations/debugger-deprecation
2627
*/
2728
class SysvBreakpointStorage implements BreakpointStorageInterface
2829
{

Debugger/src/BufferFullException.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121

2222
/**
2323
* Exception thrown when a Breakpoint has exhausted its allotted evaluation size.
24+
* @deprecated see https://cloud.google.com/stackdriver/docs/deprecations/debugger-deprecation
2425
*/
2526
class BufferFullException extends Exception
2627
{

Debugger/src/CliDaemon.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
/**
2424
* This class handles command line options and starts a configured Debugger
2525
* Daemon.
26+
* @deprecated see https://cloud.google.com/stackdriver/docs/deprecations/debugger-deprecation
2627
*/
2728
class CliDaemon
2829
{

Debugger/src/CloudRepoSourceContext.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
* @codingStandardsIgnoreStart
4242
* @see https://cloud.google.com/debugger/api/reference/rest/v2/Debuggee#cloudreposourcecontext CloudRepoSourceContext model documentation
4343
* @codingStandardsIgnoreEnd
44+
* @deprecated see https://cloud.google.com/stackdriver/docs/deprecations/debugger-deprecation
4445
*/
4546
class CloudRepoSourceContext implements SourceContext
4647
{

Debugger/src/CloudWorkspaceId.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
* @codingStandardsIgnoreStart
4141
* @see https://cloud.google.com/debugger/api/reference/rest/v2/Debuggee#cloudworkspaceid CloudWorkspaceId model documentation
4242
* @codingStandardsIgnoreEnd
43+
* @deprecated see https://cloud.google.com/stackdriver/docs/deprecations/debugger-deprecation
4344
*/
4445
class CloudWorkspaceId
4546
{

0 commit comments

Comments
 (0)