Issues (14)

Exception/InvalidJsonRequestContent.php (1 issue)

1
<?php
2
3
namespace Cypress\PatchManager\Exception;
4
5
class InvalidJsonRequestContent extends PatchManagerException
6
{
7
    /**
8
     * @var string
9
     */
10
    protected $message = "The Request passed to the PatchManagerHandler contains invalid json data";
0 ignored issues
show
Protected member variable "message" must contain a leading underscore
Loading history...
11
}
12