Skip to content

Commit

Permalink
add chainable loader abstract
Browse files Browse the repository at this point in the history
  • Loading branch information
fab2s committed Mar 15, 2022
1 parent 8dc6650 commit e10e837
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions src/Loaders/ChainableLoaderAbstract.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?php

/*
* This file is part of YaEtl
* (c) Fabrice de Stefanis / https://github.com/fab2s/YaEtl
* This source file is licensed under the MIT license which you will
* find in the LICENSE file or at https://opensource.org/licenses/MIT
*/

namespace fab2s\YaEtl\Loaders;

/**
* Class ChainableLoaderAbstract
*/
abstract class ChainableLoaderAbstract extends LoaderAbstract
{
/**
* This one is chainable
*
* @var bool
*/
protected $isAReturningVal = true;
}

0 comments on commit e10e837

Please sign in to comment.