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 7225f19 commit 7f9a61aCopy full SHA for 7f9a61a
src/Loader/DebugLoader.php
@@ -0,0 +1,11 @@
1
+<?php declare(strict_types=1);
2
+
3
+namespace Kiboko\Component\Pipeline\Loader;
4
5
+final class DebugLoader extends StreamLoader
6
+{
7
+ protected function formatLine($line)
8
+ {
9
+ return var_export($line, true) . PHP_EOL;
10
+ }
11
+}
src/Loader/JSONStreamLoader.php
+final class JSONStreamLoader extends StreamLoader
+ return \json_encode($line);
0 commit comments