Skip to content

Commit

Permalink
short descriptions was added
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtsiomBruneuski authored and gelanivishal committed Oct 12, 2018
1 parent 2f2cafe commit 72b31c9
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ public function __construct(
}

/**
* Validate response schema definition for topic
*
* @param string $responseSchema
* @param string $topicName
* @return void
Expand Down Expand Up @@ -65,6 +67,8 @@ public function validateResponseSchemaType($responseSchema, $topicName)
}

/**
* Validate request schema definition for topic
*
* @param string $requestSchema
* @param string $topicName
* @return void
Expand Down Expand Up @@ -92,6 +96,8 @@ public function validateRequestSchemaType($requestSchema, $topicName)
}

/**
* Validate service method specified in the definition of handler
*
* @param string $serviceName
* @param string $methodName
* @param string $handlerName
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php
<?php declare(strict_types=1);
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
Expand Down Expand Up @@ -65,4 +65,4 @@ public function testValidateRequestSchemaType()
$validator = new Validator($this->typeProcessor, $this->methodsMap);
$validator->validateRequestSchemaType('123', '123');
}
}
}

0 comments on commit 72b31c9

Please sign in to comment.