Skip to content
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

Scrutinizer Auto-Fixes #10

Merged
merged 1 commit into from
Aug 17, 2014
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Lib/Twig/Extension/Arrays.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
class Arrays extends \Twig_Extension {

/**
* @return array
* @return \Twig_SimpleFunction[]
*/
public function getFunctions() {
return [
Expand Down
2 changes: 1 addition & 1 deletion src/Lib/Twig/Extension/I18n.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
class I18n extends \Twig_Extension {

/**
* @return array
* @return \Twig_SimpleFunction[]
*/
public function getFunctions() {
return [
Expand Down
2 changes: 1 addition & 1 deletion src/Lib/Twig/Extension/Inflector.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
class Inflector extends \Twig_Extension {

/**
* @return array
* @return \Twig_SimpleFunction[]
*/
public function getFilters() {
return [
Expand Down
2 changes: 1 addition & 1 deletion src/Lib/Twig/Extension/Number.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function getFilters() {
}

/**
* @return array
* @return \Twig_SimpleFunction[]
*/
public function getFunctions() {
return [
Expand Down
2 changes: 1 addition & 1 deletion src/Lib/Twig/Extension/String.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function getFilters() {
}

/**
* @return array
* @return \Twig_SimpleFunction[]
*/
public function getFunctions() {
return [
Expand Down
2 changes: 1 addition & 1 deletion src/Lib/Twig/Extension/Time.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
class Time extends \Twig_Extension {

/**
* @return array
* @return \Twig_SimpleFunction[]
*/
public function getFunctions() {
return [
Expand Down
2 changes: 1 addition & 1 deletion src/Lib/Twig/Extension/View.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function __construct(View $view) {
}

/**
* @return array
* @return \Twig_SimpleFunction[]
*/
public function getFunctions() {
return [
Expand Down