for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* YAWIK
*
* @filesource
* @license MIT
* @copyright 2013 - 2016 Cross Solution <http://cross-solution.de>
*/
/** */
namespace Jobs\Options;
use Core\Options\FieldsetCustomizationOptions;
* ${CARET}
* @author Carsten Bleek <[email protected]>
class JobboardSearchOptions extends FieldsetCustomizationOptions
{
protected $fields=[
'q' => [
'enabled' => true
],
'l' => [
'd' => [
'c' => [
't' => [
'enabled' => true,
]
];
protected $perPage = 10;
* @return int
public function getPerPage(){
return $this->perPage;
}
* @param $perPage
public function setPerPage($perPage) {
$this->perPage=$perPage;