Skip to content

Commit 1e75cae

Browse files
committed
Fix case typo
1 parent 259c2ce commit 1e75cae

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/Configuration.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ class Configuration
110110
*
111111
* @var string
112112
*/
113-
protected $userAgent = "PHP-Swagger/0.0.7";
113+
protected $userAgent = "PHP-Swagger/0.0.8";
114114

115115
/**
116116
* Debug switch (default set to false)
@@ -516,8 +516,8 @@ public static function toDebugReport()
516516
$report = "PHP SDK (Shotstack) Debug Report:\n";
517517
$report .= " OS: ".php_uname()."\n";
518518
$report .= " PHP Version: ".phpversion()."\n";
519-
$report .= " OpenAPI Spec Version: 0.0.7\n";
520-
$report .= " SDK Package Version: 0.0.7\n";
519+
$report .= " OpenAPI Spec Version: 0.0.8\n";
520+
$report .= " SDK Package Version: 0.0.8\n";
521521
$report .= " Temp Folder Path: ".self::getDefaultConfiguration()->getTempFolderPath()."\n";
522522

523523
return $report;

src/Model/Transition.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -124,9 +124,9 @@ public function getIn()
124124
*/
125125
public function setIn($in)
126126
{
127-
$allowed_values = array("fade", "wipeLeft", "WipeRight");
127+
$allowed_values = array("fade", "wipeLeft", "wipeRight");
128128
if (!in_array($in, $allowed_values)) {
129-
throw new \InvalidArgumentException("Invalid value for 'in', must be one of 'fade', 'wipeLeft', 'WipeRight'");
129+
throw new \InvalidArgumentException("Invalid value for 'in', must be one of 'fade', 'wipeLeft', 'wipeRight'");
130130
}
131131
$this->in = $in;
132132
return $this;
@@ -148,9 +148,9 @@ public function getOut()
148148
*/
149149
public function setOut($out)
150150
{
151-
$allowed_values = array("fade", "wipeLeft", "WipeRight");
151+
$allowed_values = array("fade", "wipeLeft", "wipeRight");
152152
if (!in_array($out, $allowed_values)) {
153-
throw new \InvalidArgumentException("Invalid value for 'out', must be one of 'fade', 'wipeLeft', 'WipeRight'");
153+
throw new \InvalidArgumentException("Invalid value for 'out', must be one of 'fade', 'wipeLeft', 'wipeRight'");
154154
}
155155
$this->out = $out;
156156
return $this;

0 commit comments

Comments
 (0)