MissingOperationRequest
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 6
c 0
b 0
f 0
wmc 0
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
Coding Style introduced by
Protected member variable "message" must contain a leading underscore
Loading history...
11
}
12