File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
namespace Marquine \Etl \Loaders ;
4
4
5
+ use Marquine \Etl \Row ;
5
6
use Marquine \Etl \Step ;
6
7
7
8
abstract class Loader extends Step
@@ -32,5 +33,5 @@ public function output($output)
32
33
* @param \Marquine\Etl\Row $row
33
34
* @return void
34
35
*/
35
- abstract public function load ($ row );
36
+ abstract public function load (Row $ row );
36
37
}
Original file line number Diff line number Diff line change 2
2
3
3
namespace Marquine \Etl \Transformers ;
4
4
5
+ use Marquine \Etl \Row ;
5
6
use Marquine \Etl \Step ;
6
7
7
8
abstract class Transformer extends Step
@@ -12,5 +13,5 @@ abstract class Transformer extends Step
12
13
* @param \Marquine\Etl\Row $row
13
14
* @return void
14
15
*/
15
- abstract public function transform ($ row );
16
+ abstract public function transform (Row $ row );
16
17
}
You can’t perform that action at this time.
0 commit comments