Skip to content
This repository has been archived by the owner on Jan 30, 2020. It is now read-only.

zend-inputfilter 2.10.0

Compare
Choose a tag to compare
@weierophinney weierophinney released this 30 Jan 16:59
· 68 commits to master since this release

Added

  • #176 adds the interface UnfilteredDataInterface, with the following methods:

    public function getUnfilteredData() : array|object;
    public function setUnfilteredData(array|object $data) : $this;

    By default, the BaseInputFilter now implements this interface.

    The primary purpose of the interface is to allow the ability to access ALL
    original raw data, and not just the data the input filter knows about. This is
    particularly useful with collections.

Changed

  • Nothing.

Deprecated

  • Nothing.

Removed

  • Nothing.

Fixed

  • Nothing.