@@ -933,10 +933,10 @@ public function seeResponseContainsJson(array $json = []): void
933
933
*
934
934
* // response {"name": "john", "age": 20}
935
935
* $schema = [
936
- * " properties" => [
937
- * " age" => [
938
- * " type" => " integer" ,
939
- * " minimum" => 18
936
+ * ' properties' => [
937
+ * ' age' => [
938
+ * ' type' => ' integer' ,
939
+ * ' minimum' => 18
940
940
* ]
941
941
* ]
942
942
* ];
@@ -1578,7 +1578,7 @@ public function dontSeeXmlResponseEquals($xml): void
1578
1578
*
1579
1579
* ``` php
1580
1580
* <?php
1581
- * $I->seeXmlResponseIncludes(" <result>1</result>" );
1581
+ * $I->seeXmlResponseIncludes(' <result>1</result>' );
1582
1582
* ```
1583
1583
*
1584
1584
* @param mixed $xml
@@ -1619,22 +1619,22 @@ public function dontSeeXmlResponseIncludes($xml): void
1619
1619
*
1620
1620
* ```php
1621
1621
* <?php
1622
- * $I->seeBinaryResponseEquals(" df589122eac0f6a7bd8795436e692e3675cadc3b" );
1622
+ * $I->seeBinaryResponseEquals(' df589122eac0f6a7bd8795436e692e3675cadc3b' );
1623
1623
* ```
1624
1624
*
1625
1625
* Example: Using sha1 for a file contents
1626
1626
*
1627
1627
* ```php
1628
1628
* <?php
1629
- * $fileData = file_get_contents(" test_file.jpg" );
1629
+ * $fileData = file_get_contents(' test_file.jpg' );
1630
1630
* $I->seeBinaryResponseEquals(md5($fileData));
1631
1631
* ```
1632
1632
* Example: Using sha256 hash
1633
1633
*
1634
1634
* ```php
1635
1635
* <?php
1636
1636
* $fileData = '/9j/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgKCgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/yQALCAABAAEBAREA/8wABgAQEAX/2gAIAQEAAD8A0s8g/9k='; // very small jpeg
1637
- * $I->seeBinaryResponseEquals(hash(" sha256" , base64_decode($fileData)), 'sha256');
1637
+ * $I->seeBinaryResponseEquals(hash(' sha256' , base64_decode($fileData)), 'sha256');
1638
1638
* ```
1639
1639
*
1640
1640
* @param string $hash the hashed data response expected
@@ -1653,7 +1653,7 @@ public function seeBinaryResponseEquals(string $hash, string $algo = 'sha1'): vo
1653
1653
*
1654
1654
* ```php
1655
1655
* <?php
1656
- * $I->dontSeeBinaryResponseEquals(" 8c90748342f19b195b9c6b4eff742ded" );
1656
+ * $I->dontSeeBinaryResponseEquals(' 8c90748342f19b195b9c6b4eff742ded' );
1657
1657
* ```
1658
1658
* Opposite to `seeBinaryResponseEquals`
1659
1659
*
0 commit comments