Behat


Behat/Behat/Hook/Loader/HookLoaderInterface.php



namespace Behat\Behat\Hook\Loader;

/*
 * This file is part of the Behat.
 * (c) Konstantin Kudryashov 
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

/**
 * Hook loader interface.
 *
 * @author Konstantin Kudryashov 
 */
interface HookLoaderInterface
{
    /**
     * Loads definitions from provided resource.
     *
     * @param mixed $resource
     */
    public function load($resource);
}

Behat