mirror of
https://github.com/hauke68/Magallanes.git
synced 2026-09-05 17:08:56 +02:00
Text files should end with a newline character.
This commit is contained in:
@@ -72,4 +72,4 @@ class Dumper
|
||||
|
||||
return $output;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -86,4 +86,4 @@ class Escaper
|
||||
{
|
||||
return sprintf("'%s'", str_replace('\'', '\'\'', $value));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,4 +22,4 @@ use Mage\Yaml\Exception\RuntimeException;
|
||||
*/
|
||||
class DumpException extends RuntimeException
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
@@ -20,4 +20,4 @@ namespace Mage\Yaml\Exception;
|
||||
*/
|
||||
interface ExceptionInterface
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
@@ -147,4 +147,4 @@ class ParseException extends RuntimeException
|
||||
$this->message .= '.';
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -22,4 +22,4 @@ use Mage\Yaml\Exception\ExceptionInterface;
|
||||
*/
|
||||
class RuntimeException extends \RuntimeException implements ExceptionInterface
|
||||
{
|
||||
}
|
||||
}
|
||||
|
||||
@@ -502,4 +502,4 @@ class Inline
|
||||
$~x
|
||||
EOF;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -655,5 +655,4 @@ class Parser
|
||||
{
|
||||
return (0 === strpos($this->currentLine, '- '));
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -139,4 +139,4 @@ class Unescaper
|
||||
|
||||
return chr(0xF0 | $c >> 18) . chr(0x80 | $c >> 12 & 0x3F) . chr(0x80 | $c >> 6 & 0x3F) . chr(0x80 | $c & 0x3F);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
+1
-1
@@ -99,4 +99,4 @@ class Yaml
|
||||
|
||||
return $yaml->dump($array, $inline, 0, $exceptionOnInvalidType, $objectSupport);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user