phossa2/query

View on GitHub
src/Query/Interfaces/BuilderAwareInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * Phossa Project
 *
 * PHP version 5.4
 *
 * @category  Library
 * @package   Phossa2\Query
 * @copyright Copyright (c) 2016 phossa.com
 * @license   http://mit-license.org/ MIT License
 * @link      http://www.phossa.com/
 */
/*# declare(strict_types=1); */

namespace Phossa2\Query\Interfaces;

/**
 * BuilderAwareInterface
 *
 * @package Phossa2\Query
 * @author  Hong Zhang <phossa@126.com>
 * @version 2.0.1
 * @since   2.0.0 added
 * @since   2.0.1 changed setBuilder signature
 */
interface BuilderAwareInterface
{
    /**
     * Set the builder
     *
     * @param  BuilderInterface $builder
     * @return $this
     * @access public
     * @api
     * @since  2.0.1 able to set NULL
     */
    public function setBuilder(BuilderInterface $builder = null);

    /**
     * Return the builder
     *
     * @return BuilderInterface
     * @access public
     * @api
     */
    public function getBuilder()/*# : BuilderInterface */;
}