Skip to content

Commit

Permalink
capitalized 'boolean'
Browse files Browse the repository at this point in the history
  • Loading branch information
eriksencosta committed Apr 27, 2011
1 parent ff8ec0a commit 5094a5c
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions Alias.php
Expand Up @@ -20,7 +20,7 @@ class Alias
* Constructor.
*
* @param string $id Alias identifier
* @param boolean $public If this alias is public
* @param Boolean $public If this alias is public
*/
public function __construct($id, $public = true)
{
Expand All @@ -31,7 +31,7 @@ public function __construct($id, $public = true)
/**
* Checks if this DI Alias should be public or not.
*
* @return boolean
* @return Boolean
*/
public function isPublic()
{
Expand All @@ -41,7 +41,7 @@ public function isPublic()
/**
* Sets if this Alias is public.
*
* @param boolean $boolean If this Alias should be public
* @param Boolean $boolean If this Alias should be public
*/
public function setPublic($boolean)
{
Expand Down
2 changes: 1 addition & 1 deletion Compiler/AnalyzeServiceReferencesPass.php
Expand Up @@ -36,7 +36,7 @@ class AnalyzeServiceReferencesPass implements RepeatablePassInterface
/**
* Constructor.
*
* @param boolean $onlyConstructorArguments Sets this Service Reference pass to ignore method calls
* @param Boolean $onlyConstructorArguments Sets this Service Reference pass to ignore method calls
*/
public function __construct($onlyConstructorArguments = false)
{
Expand Down
2 changes: 1 addition & 1 deletion Compiler/InlineServiceDefinitionsPass.php
Expand Up @@ -106,7 +106,7 @@ private function inlineArguments(ContainerBuilder $container, array $arguments)
* @param ContainerBuilder $container
* @param string $id
* @param Definition $definition
* @return boolean If the definition is inlineable
* @return Boolean If the definition is inlineable
*/
private function isInlinableDefinition(ContainerBuilder $container, $id, Definition $definition)
{
Expand Down
2 changes: 1 addition & 1 deletion Compiler/ResolveInvalidReferencesPass.php
Expand Up @@ -69,7 +69,7 @@ public function process(ContainerBuilder $container)
* Processes arguments to determine invalid references.
*
* @param array $arguments An array of Reference objects
* @param boolean $inMethodCall
* @param Boolean $inMethodCall
*/
private function processArguments(array $arguments, $inMethodCall = false)
{
Expand Down
4 changes: 2 additions & 2 deletions Compiler/ServiceReferenceGraphNode.php
Expand Up @@ -65,7 +65,7 @@ public function addOutEdge(ServiceReferenceGraphEdge $edge)
/**
* Checks if the value of this node is an Alias.
*
* @return boolean True if the value is an Alias instance
* @return Boolean True if the value is an Alias instance
*/
public function isAlias()
{
Expand All @@ -75,7 +75,7 @@ public function isAlias()
/**
* Checks if the value of this node is a Definition.
*
* @return boolean True if the value is a Definition instance
* @return Boolean True if the value is a Definition instance
*/
public function isDefinition()
{
Expand Down
2 changes: 1 addition & 1 deletion ContainerBuilder.php
Expand Up @@ -83,7 +83,7 @@ public function getExtensions()
* Checks if we have an extension.
*
* @param string $name The name of the extension
* @return boolean If the extension exists
* @return Boolean If the extension exists
*/
public function hasExtension($name)
{
Expand Down
2 changes: 1 addition & 1 deletion Dumper/GraphvizDumper.php
Expand Up @@ -123,7 +123,7 @@ private function addEdges()
*
* @param string $id The service id used to find edges
* @param array $arguments An array of arguments
* @param boolean $required
* @param Boolean $required
* @param string $name
* @return array An array of edges
*/
Expand Down
6 changes: 3 additions & 3 deletions Dumper/PhpDumper.php
Expand Up @@ -330,7 +330,7 @@ private function addServiceInstance($id, $definition)
*
* @param string $id
* @param Definition $definition
* @return boolean
* @return Boolean
*/
private function isSimpleInstance($id, $definition)
{
Expand Down Expand Up @@ -913,7 +913,7 @@ private function getDefinitionsFromArguments(array $arguments)
*
* @param string $id
* @param array $arguments
* @return boolean
* @return Boolean
*/
private function hasReference($id, array $arguments)
{
Expand All @@ -936,7 +936,7 @@ private function hasReference($id, array $arguments)
* Dumps values.
*
* @param array $value
* @param boolean $interpolate
* @param Boolean $interpolate
* @return string
*/
private function dumpValue($value, $interpolate = true)
Expand Down
2 changes: 1 addition & 1 deletion Reference.php
Expand Up @@ -61,7 +61,7 @@ public function getInvalidBehavior()
/**
* Returns true when this Reference is strict
*
* @return boolean
* @return Boolean
*/
public function isStrict()
{
Expand Down

0 comments on commit 5094a5c

Please sign in to comment.