$props Properties. * @return Request This object. */ public function init( array $props ) { foreach ( $props as $name => $value ) { $prop = (string) preg_replace( '#^crontrol_#', '', $name ); if ( property_exists( $this, $prop ) ) { $this->$prop = $value; } } return $this; } }