Overview

Namespaces

  • Net
    • Bazzline
      • Component
        • ApiDocumentBuilder
          • Builder
          • Command
          • Process
          • Requirement
          • Service

Classes

  • Net\Bazzline\Component\ApiDocumentBuilder\Builder\Apigen
  • Net\Bazzline\Component\ApiDocumentBuilder\Command\Builder
  • Net\Bazzline\Component\ApiDocumentBuilder\Command\CleanDirectory
  • Net\Bazzline\Component\ApiDocumentBuilder\Process\CreateNewProjectInTheCache
  • Net\Bazzline\Component\ApiDocumentBuilder\Requirement\CachedProjectHasChanges
  • Net\Bazzline\Component\ApiDocumentBuilder\Service\ApplicationLocator

Interfaces

  • Net\Bazzline\Component\ApiDocumentBuilder\Builder\BuilderInterface

Exceptions

  • Net\Bazzline\Component\ApiDocumentBuilder\Service\InvalidArgumentException
  • Overview
  • Namespace
  • Class
 1:  2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 
<?php
/**
 * @author stev leibelt <artodeto@bazzline.net>
 * @since 2015-05-24 
 */

namespace Net\Bazzline\Component\ApiDocumentBuilder\Builder;

interface BuilderInterface
{
    /**
     * @return array
     */
    public function build();

    /**
     * @param string $path
     * @return $this
     */
    public function setDestination($path);

    /**
     * @param string $path
     * @return $this
     */
    public function setSource($path);

    /**
     * @param string $title
     * @return $this
     */
    public function setTitle($title);
}
PHP Api Document Builder by bazzline.net API documentation generated by ApiGen