Skip to content
This repository has been archived by the owner on Jan 5, 2024. It is now read-only.

Commit

Permalink
Fixed some syntax problem
Browse files Browse the repository at this point in the history
  • Loading branch information
endyjasmi committed Nov 6, 2014
1 parent 9d8c7b1 commit a468e54
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/Laravel/Validators/Neo4jValidator.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,14 @@ class Neo4jValidator extends Validator
* @param array $messages
* @param array $customAttributes
*/
public function __construct(TranslatorInterface $translator, array $data, array $rules, array $messages = array(), array $customAttributes = array(), Neo4j $neo4j)
{
public function __construct(
TranslatorInterface $translator,
array $data,
array $rules,
array $messages = array(),
array $customAttributes = array(),
Neo4j $neo4j = null
) {
parent::__construct($translator, $data, $rules, $messages, $customAttributes);

$this->neo4j = $neo4j;
Expand Down

0 comments on commit a468e54

Please sign in to comment.