Esempio n. 1
0
 /**
  * Apply all of the callbacks for this filter.
  *
  * @param mixed $data
  * @param int $offset
  * @return mixed
  * @throws \TypeError
  */
 public function applyCallbacks($data = null, int $offset = 0)
 {
     if ($offset === 0) {
         if (\is_null($data)) {
             return parent::applyCallbacks([], 0);
         } elseif (!\is_array($data)) {
             throw new \TypeError(\sprintf('Expected an array of string (%s).', $this->index));
         }
         if (!\is1DArray($data)) {
             throw new \TypeError(\sprintf('Expected a 1-dimensional array (%s).', $this->index));
         }
         foreach ($data as $key => $val) {
             if (\is_array($val)) {
                 throw new \TypeError(\sprintf('Expected a string at index %s (%s).', $key, $this->index));
             }
             if (\is_null($val)) {
                 $data[$key] = '';
             } elseif (\is_numeric($val)) {
                 $data[$key] = (string) $val;
             } elseif (!\is_string($val)) {
                 throw new \TypeError(\sprintf('Expected a string at index %s (%s).', $key, $this->index));
             }
         }
         return parent::applyCallbacks($data, 0);
     }
     return parent::applyCallbacks($data, $offset);
 }
Esempio n. 2
0
 /**
  * Apply all of the callbacks for this filter.
  *
  * @param mixed $data
  * @param int $offset
  * @return mixed
  * @throws \TypeError
  */
 public function applyCallbacks($data = null, int $offset = 0)
 {
     if ($offset === 0) {
         if (\is_null($data)) {
             return parent::applyCallbacks($data, 0);
         } elseif (!\is_array($data)) {
             throw new \TypeError(\sprintf('Expected an array of booleans (%s).', $this->index));
         }
         if (!\is1DArray($data)) {
             throw new \TypeError(\sprintf('Expected a 1-dimensional array (%s).', $this->index));
         }
         foreach ($data as $key => $val) {
             if (\is_array($val)) {
                 throw new \TypeError(\sprintf('Unexpected array at index %s (%s).', $key, $this->index));
             }
             if (\is_null($data) || $data === '') {
                 $data[$key] = null;
             } else {
                 $data[$key] = !empty($val);
             }
         }
         return parent::applyCallbacks($data, 0);
     }
     return parent::applyCallbacks($data, $offset);
 }
Esempio n. 3
0
 /**
  * Apply all of the callbacks for this filter.
  *
  * @param mixed $data
  * @param int $offset
  * @return mixed
  * @throws \TypeError
  */
 public function applyCallbacks($data = null, int $offset = 0)
 {
     if ($offset === 0) {
         if (\is_null($data)) {
             return parent::applyCallbacks($data, 0);
         } elseif (!\is_array($data)) {
             throw new \TypeError(\sprintf('Expected an array of floats (%s).', $this->index));
         }
         if (!\is1DArray($data)) {
             throw new \TypeError(\sprintf('Expected a 1-dimensional array (%s).', $this->index));
         }
         foreach ($data as $key => $val) {
             if (\is_array($val)) {
                 throw new \TypeError(\sprintf('Expected a float at index %s (%s).', $key, $this->index));
             }
             if (\is_int($val) || \is_float($val)) {
                 $data[$key] = (double) $val;
             } elseif (\is_null($val) || $val === '') {
                 $data[$key] = (double) $this->default;
             } elseif (\is_string($val) && \is_numeric($val)) {
                 $data[$key] = (double) $val;
             } else {
                 throw new \TypeError(\sprintf('Expected a float at index %s (%s).', $key, $this->index));
             }
         }
         return parent::applyCallbacks($data, 0);
     }
     return parent::applyCallbacks($data, $offset);
 }