Skip to content

Commit

Permalink
fix code source
Browse files Browse the repository at this point in the history
  • Loading branch information
phcorp committed Jan 27, 2017
1 parent 624b90f commit 4afcbf2
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .formatter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ header: |
* Feel free to edit as you please, and have fun.
*
* @author Pierre Hennequart <[email protected]>
*/
*/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,4 @@ $ php app/console doctrine:generate:viz --help
## Credits

- [globalcitizen/mysqlviz](https://github.com/globalcitizen/mysqlviz)
- [graphp/graphviz](https://github.com/graphp/graphviz)
- [graphp/graphviz](https://github.com/graphp/graphviz)
2 changes: 1 addition & 1 deletion env/autoload.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@

AnnotationRegistry::registerLoader(array($loader, 'loadClass'));

return $loader;
return $loader;
2 changes: 1 addition & 1 deletion env/config/parameters.yml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ parameters:
mailer_password: ~

# A secret key that's used to generate certain security-related tokens
secret: ThisTokenIsNotSoSecretChangeIt
secret: ThisTokenIsNotSoSecretChangeIt
2 changes: 1 addition & 1 deletion env/config/services.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ parameters:
services:
# service_name:
# class: AppBundle\Directory\ClassName
# arguments: ["@another_service_name", "plain_value", "%parameter_name%"]
# arguments: ["@another_service_name", "plain_value", "%parameter_name%"]
2 changes: 1 addition & 1 deletion src/DependencyInjection/DoctrinevizBundleExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ public function prepend(ContainerBuilder $container)
public function load(array $configs, ContainerBuilder $container)
{
$configuration = new Configuration($this->getAlias());
$config = $this->processConfiguration($configuration, $configs);
$this->processConfiguration($configuration, $configs);
}
}
Empty file modified src/DoctrinevizBundle.php
100755 → 100644
Empty file.
4 changes: 2 additions & 2 deletions src/Graphviz/Node.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public function deleteAttribute($id)
*
* @param Attribute $attribute
*/
public function addAttribute($attribute)
public function addAttribute(Attribute $attribute)
{
$this->attributes[$attribute->getId()] = $attribute;
}
Expand All @@ -130,7 +130,7 @@ public function addAttribute($attribute)
*
* @param Attribute $attribute
*/
public function removeAttribute($attribute)
public function removeAttribute(Attribute $attribute)
{
unset($this->attributes[$attribute->getId()]);
}
Expand Down

0 comments on commit 4afcbf2

Please sign in to comment.