We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a361e5 commit c0eae51Copy full SHA for c0eae51
src/Formatters/PlaneCommand.php
@@ -49,14 +49,12 @@ private function normalizeValue($value): string
49
$firstNormalizedValue = is_array($value) ?
50
self::NORMALIZED_VALUES[3] : $value;
51
52
- $secondNormalizedValue = (
+ return (
53
($firstNormalizedValue === self::NORMALIZED_VALUES[0]) ||
54
($firstNormalizedValue === self::NORMALIZED_VALUES[1]) ||
55
($firstNormalizedValue === self::NORMALIZED_VALUES[2]) ||
56
($firstNormalizedValue === self::NORMALIZED_VALUES[3])
57
) ? $firstNormalizedValue : "'" . $firstNormalizedValue . "'";
58
-
59
- return $secondNormalizedValue;
60
}
61
62
private function getPlaneItem(
0 commit comments