8000 Fixed typos by pborreli · Pull Request #9518 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

Fixed typos #9518

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 19, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ public function evaluate($expression, $values = array())
* Parses an expression.
*
* @param Expression|string $expression The expression to parse
* @param array $names An array of valid names
*
* @return ParsedExpression A ParsedExpression instance
*/
Expand Down
2 changes: 2 additions & 0 deletions src/Symfony/Component/ExpressionLanguage/Lexer.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ class Lexer
* @param string $expression The expression to tokenize
*
* @return TokenStream A token stream instance
*
* @throws SyntaxError
*/
public function tokenize($expression)
{
Expand Down
2 changes: 2 additions & 0 deletions src/Symfony/Component/ExpressionLanguage/ 10000 Parser.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,8 @@ public function __construct(array $functions)
* @param array $names An array of valid names
*
* @return Node A node tree
*
* @throws SyntaxError
*/
public function parse(TokenStream $stream, $names = array())
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
namespace Symfony\Component\Filesystem\Exception;

/**
* IOException interface for file and input/output stream releated exceptions thrown by the component.
* IOException interface for file and input/output stream related exceptions thrown by the component.
*
* @author Christian Gärtner <christiangaertner.film@googlemail.com>
*/
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Filesystem/Filesystem.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class Filesystem
* @param string $targetFile The target filename
* @param boolean $override Whether to override an existing file or not
*
* @throws FileNotFoundException When orginFile doesn't exist
* @throws FileNotFoundException When originFile doesn't exist
* @throws IOException When copy fails
*/
public function copy($originFile, $targetFile, $override = false)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class FormDataCollector extends DataCollector implements FormDataCollectorInterf
/**
* Stores the collected data per {@link FormInterface} instance.
*
* Uses the hashes of the forms as keys. This is preferrable over using
* Uses the hashes of the forms as keys. This is preferable over using
* {@link \SplObjectStorage}, because in this way no references are kept
* to the {@link FormInterface} instances.
*
Expand All @@ -45,7 +45,7 @@ class FormDataCollector extends DataCollector implements FormDataCollectorInterf
/**
* Stores the collected data per {@link FormView} instance.
*
* Uses the hashes of the views as keys. This is preferrable over using
* Uses the hashes of the views as keys. This is preferable over using
* {@link \SplObjectStorage}, because in this way no references are kept
* to the {@link FormView} instances.
*
Expand All @@ -57,7 +57,7 @@ class FormDataCollector extends DataCollector implements FormDataCollectorInterf
* Connects {@link FormView} with {@link FormInterface} instances.
*
* Uses the hashes of the views as keys and the hashes of the forms as
* values. This is preferrable over storing the objects directly, because
* values. This is preferable over storing the objects directly, because
* this way they can safely be discarded by the GC.
*
* @var array
Expand Down
1 change: 1 addition & 0 deletions src/Symfony/Component/Form/Tests/AbstractFormTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ abstract protected function createForm();
* @param string $name
* @param EventDispatcherInterface $dispatcher
* @param string $dataClass
* @param array $options
*
* @return FormBuilder
*/
Expand Down
0