15 lines
254 B
PHP
15 lines
254 B
PHP
<?php
|
|
|
|
// No direct access.
|
|
defined('_JEXEC') or die;
|
|
|
|
class CommonClubsControllerMappingInt extends AbstractCommonClubsControllerMapping
|
|
{
|
|
|
|
public function getFilteredValue($input, $name)
|
|
{
|
|
return $input->getInt($name);
|
|
}
|
|
|
|
}
|