swaggest/php-json-schema

View on GitHub
src/DataPreProcessor.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Swaggest\JsonSchema;


interface DataPreProcessor
{
    /**
     * @param mixed $data original data
     * @param Schema $schema
     * @param bool $import
     * @return mixed processed data
     */
    public function process($data, Schema $schema, $import = true);
}