Skip to content
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
Diff view
2 changes: 1 addition & 1 deletion library/Director/Web/Form/Element/Boolean.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function isValid($value, $context = null)
* @param string $key
* @codingStandardsIgnoreStart
*/
protected function _filterValue(&$value, &$key)
protected function _filterValue(&$value, $key)
{
// @codingStandardsIgnoreEnd
if ($value === true) {
Expand Down
2 changes: 1 addition & 1 deletion library/Director/Web/Form/Element/DataFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ protected function isEmptyExpression(Filter $filter)
* @inheritdoc
* @codingStandardsIgnoreStart
*/
protected function _filterValue(&$value, &$key)
protected function _filterValue(&$value, $key)
{
// @codingStandardsIgnoreEnd
try {
Expand Down
2 changes: 1 addition & 1 deletion library/Director/Web/Form/Element/ExtensibleSet.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ protected function _getErrorMessages()
/**
* @codingStandardsIgnoreStart
*/
protected function _filterValue(&$value, &$key)
protected function _filterValue(&$value, $key)
{
// @codingStandardsIgnoreEnd
if (is_array($value)) {
Expand Down
Loading