Skip to content

Commit

Permalink
add php doc
Browse files Browse the repository at this point in the history
  • Loading branch information
Voksiv committed Mar 25, 2016
1 parent bfb33e6 commit 2a6b88a
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/LTDBeget/sphinx/Tokenizer.php
Expand Up @@ -24,6 +24,9 @@ final class Tokenizer
* @throws SyntaxErrorException
* @throws BadMethodCallException
* @return array
* @throws \Hoa\Ustring\Exception
* @throws \InvalidArgumentException
* @throws \LogicException
*/
public static function tokenize(string $plainData) : array
{
Expand All @@ -35,6 +38,7 @@ public static function tokenize(string $plainData) : array
* @internal
* @param string $string
* @throws BadMethodCallException
* @throws \Hoa\Ustring\Exception
*/
private function __construct(string $string)
{
Expand All @@ -55,6 +59,8 @@ private function removeComments(string $string) : string
/**
* @internal
* @return Tokenizer
* @throws \LogicException
* @throws \InvalidArgumentException
* @throws SyntaxErrorException
*/
private function tokenizeInternal() : Tokenizer
Expand Down Expand Up @@ -149,6 +155,8 @@ private function extractSectionName()
/**
* @internal
* @throws SyntaxErrorException
* @throws \InvalidArgumentException
* @throws \LogicException
*/
private function extractInheritance()
{
Expand All @@ -172,6 +180,8 @@ private function extractInheritance()
/**
* @internal
* @throws SyntaxErrorException
* @throws \InvalidArgumentException
* @throws \LogicException
*/
private function extractInheritanceName()
{
Expand All @@ -192,6 +202,8 @@ private function extractInheritanceName()
/**
* @internal
* @throws SyntaxErrorException
* @throws \LogicException
* @throws \InvalidArgumentException
*/
private function extractOptions()
{
Expand Down Expand Up @@ -220,6 +232,8 @@ private function extractOptions()
/**
* @internal
* @throws SyntaxErrorException
* @throws \InvalidArgumentException
* @throws \LogicException
*/
private function extractOption()
{
Expand All @@ -240,6 +254,8 @@ private function extractOption()
/**
* @internal
* @throws SyntaxErrorException
* @throws \InvalidArgumentException
* @throws \LogicException
*/
private function extractOptionName()
{
Expand All @@ -260,6 +276,8 @@ private function extractOptionName()
/**
* @internal
* @throws SyntaxErrorException
* @throws \LogicException
* @throws \InvalidArgumentException
*/
private function extractOptionValue()
{
Expand Down

0 comments on commit 2a6b88a

Please sign in to comment.