Issues (14)

PatchManager/Exception/MissingOperationRequest.php (1 issue)

1
<?php
2
3
namespace Cypress\PatchManager\Exception;
4
5
class MissingOperationRequest extends PatchManagerException
6
{
7
    /**
8
     * @var string
9
     */
10
    protected $message = "You can't call the PatchManager without passing an operation in the PATCH request body";
0 ignored issues
show
Protected member variable "message" must contain a leading underscore
Loading history...
11
}
12