Skip to content

Commit

Permalink
0.0.8: «Use of echo language construct is discouraged»: mage2pro/core#28
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrii-fediuk committed Sep 27, 2017
1 parent dae1831 commit f16ff14
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions T/Basic.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ final class Basic extends TestCase {
function t00() {}

/** 2017-07-05 */
function t01_token() {echo S::s()->token();}
function t01_token() {print_r(S::s()->token());}

/** 2017-07-05 */
function t02_organizations() {echo df_json_encode($this->f()->organizations());}
function t02_organizations() {print_r(df_json_encode($this->f()->organizations()));}

/** 2017-07-06 */
function t03_invalid() {echo df_json_encode($this->f()->p('invalid'));}
function t03_invalid() {print_r(df_json_encode($this->f()->p('invalid')));}

/** @test 2017-07-07 */
function t04_currencies() {echo df_json_encode($this->f()->currencies());}
function t04_currencies() {print_r(df_json_encode($this->f()->currencies()));}
}
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mage2pro/zoho-inventory"
,"version": "0.0.7"
,"version": "0.0.8"
,"description": "The «Zoho Inventory» extension for Magento 2."
,"type": "magento2-module"
,"homepage": "https://github.com/mage2pro/zoho-inventory"
Expand All @@ -11,7 +11,7 @@
"homepage": "https://mage2.pro/users/dmitry_fedyuk",
"role": "Developer"
}]
,"require": {"mage2pro/core": ">=2.7.40", "mage2pro/zoho": ">=0.0.6", "mage2pro/zoho-bi": ">=0.0.5"}
,"require": {"mage2pro/core": ">=2.12.21", "mage2pro/zoho": ">=0.0.6", "mage2pro/zoho-bi": ">=0.0.5"}
,"autoload": {"files": ["registration.php"], "psr-4": {"Dfe\\ZohoInventory\\": ""}}
,"keywords": [
"Inventory"
Expand Down

0 comments on commit f16ff14

Please sign in to comment.