Skip to content

Commit

Permalink
add some docs
Browse files Browse the repository at this point in the history
  • Loading branch information
solverat committed Jul 15, 2019
1 parent 2e49534 commit d012de4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Pimcore - Dynamic Search

![Dynamic Search Schema](https://user-images.githubusercontent.com/700119/59977691-d9ba9580-95d4-11e9-8d25-c87308e5e48c.png)
![Dynamic Search Schema](https://user-images.githubusercontent.com/700119/61217991-3c550c00-a711-11e9-9f62-6f1fb4ff0e3e.png)

[![Software License](https://img.shields.io/badge/license-GPLv3-brightgreen.svg?style=flat-square)](LICENSE.md)
[![Latest Release](https://img.shields.io/packagist/v/dachcom-digital/dynamic-search.svg?style=flat-square)](https://packagist.org/packages/dachcom-digital/dynamic-search)
Expand Down
15 changes: 3 additions & 12 deletions src/DynamicSearchBundle/Validator/ResourceValidator.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
use DynamicSearchBundle\Exception\ProviderException;
use DynamicSearchBundle\Manager\DataManagerInterface;
use DynamicSearchBundle\Provider\DataProviderInterface;
use DynamicSearchBundle\Registry\ContextGuardRegistryInterface;

class ResourceValidator implements ResourceValidatorInterface
{
Expand All @@ -21,23 +20,15 @@ class ResourceValidator implements ResourceValidatorInterface
protected $dataManager;

/**
* @var ContextGuardRegistryInterface
*/
protected $contextGuardRegistry;

/**
* @param ConfigurationInterface $configuration
* @param DataManagerInterface $dataManager
* @param ContextGuardRegistryInterface $contextGuardRegistry
* @param ConfigurationInterface $configuration
* @param DataManagerInterface $dataManager
*/
public function __construct(
ConfigurationInterface $configuration,
DataManagerInterface $dataManager,
ContextGuardRegistryInterface $contextGuardRegistry
DataManagerInterface $dataManager
) {
$this->configuration = $configuration;
$this->dataManager = $dataManager;
$this->contextGuardRegistry = $contextGuardRegistry;
}

/**
Expand Down

0 comments on commit d012de4

Please sign in to comment.