Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HP-1928: array => string type #64

Merged
merged 11 commits into from
Jun 5, 2024
Merged

Conversation

bladeroot
Copy link
Member

@bladeroot bladeroot commented Apr 17, 2024

Summary by CodeRabbit

  • New Features

    • Enhanced sale creation process by including additional data.
    • Added a new property $reason to the sale creation data transfer object.
  • Bug Fixes

    • Improved data handling in sale classes by converting arrays to JSON strings and validating JSON data.
  • Tests

    • Updated billing context to include new methods and improved error handling in assertions.

Copy link
Contributor

coderabbitai bot commented Apr 17, 2024

Warning

Rate limit exceeded

@bladeroot has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 51 minutes and 3 seconds before requesting another review.

How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.

Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.

Please see our FAQ for further information.

Commits

Files that changed from the base of the PR and between c0c1a82 and bc5b93b.

Walkthrough

The recent changes primarily focus on the Sale class, modifying its data property from a nullable array to a nullable string. This alteration ensures that data is handled as JSON strings, enhancing consistency and validation. The SaleFactory and SaleCreationDto classes have also been updated to support these changes, while the BillingContext class incorporates new methods and improved assertions for better testing.

Changes

File Change Summary
src/sale/Sale.php Changed data property from nullable array to nullable string; updated constructor and methods accordingly.
src/sale/SaleFactory.php Enhanced the create method to include the data parameter in the Sale constructor call.
src/sale/SaleCreationDto.php Added a public property $reason.
src/sale/SaleInterface.php Updated getData method's return type from `string
tests/behat/bootstrap/BillingContext.php Added new method recalculateAutoTariff; updated assertions and time handling in existing methods.

Sequence Diagram(s) (Beta)

sequenceDiagram
    participant Client
    participant SaleFactory
    participant Sale
    participant Database

    Client->>SaleFactory: createSale(data)
    SaleFactory->>Sale: new Sale(id, target, customer, plan, time, data)
    Sale->>Sale: setData(data)
    Sale->>Database: save()
    Sale-->>SaleFactory: Sale instance
    SaleFactory-->>Client: Sale instance
Loading

Poem

In the code where sales do dance,
Data strings now take their chance.
JSON flows with grace and ease,
Validation brings us peace.
Tariffs recalculated right,
Billing shines in clearer light.
Cheers to changes, swift and bright! 🌟


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

Share
Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (invoked as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between dfeb822 and 2f0f4c9.

Files selected for processing (2)
  • src/sale/Sale.php (3 hunks)
  • tests/behat/bootstrap/BillingContext.php (3 hunks)
Additional context used
PHPStan
src/sale/Sale.php

27-27: Class hiqdev\php\billing\sale\Sale implements unknown interface hiqdev\php\billing\sale\SaleInterface. (interface.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


60-60: Parameter $target of method hiqdev\php\billing\sale\Sale::__construct() has invalid type hiqdev\php\billing\target\TargetInterface. (class.notFound)


61-61: Parameter $customer of method hiqdev\php\billing\sale\Sale::__construct() has invalid type hiqdev\php\billing\customer\CustomerInterface. (class.notFound)


62-62: Parameter $plan of method hiqdev\php\billing\sale\Sale::__construct() has invalid type hiqdev\php\billing\plan\PlanInterface. (class.notFound)


112-112: Instantiated class hiqdev\php\billing\Exception\InvariantException not found. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


116-116: Instantiated class hiqdev\php\billing\Exception\ConstraintException not found. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


128-128: Instantiated class hiqdev\php\billing\Exception\CannotReassignException not found. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


140-140: Function json_validate not found. (function.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


146-146: Call to static method encode() on an unknown class yii\helpers\Json. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


155-155: Call to static method decode() on an unknown class yii\helpers\Json. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols

tests/behat/bootstrap/BillingContext.php

20-20: Class hiqdev\php\billing\tests\behat\bootstrap\BillingContext extends unknown class hiqdev\php\billing\tests\behat\bootstrap\BaseContext. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


22-22: Class hiqdev\php\billing\tests\behat\bootstrap\BillingContext uses unknown trait BehatExpectException\ExpectException. (trait.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


39-39: Access to an undefined property hiqdev\php\billing\tests\behat\bootstrap\BillingContext::$builder. (property.notFound)
Learn more: https://phpstan.org/blog/solving-phpstan-access-to-undefined-property


47-47: Access to an undefined property hiqdev\php\billing\tests\behat\bootstrap\BillingContext::$builder. (property.notFound)
Learn more: https://phpstan.org/blog/solving-phpstan-access-to-undefined-property


55-55: Access to an undefined property hiqdev\php\billing\tests\behat\bootstrap\BillingContext::$builder. (property.notFound)
Learn more: https://phpstan.org/blog/solving-phpstan-access-to-undefined-property


66-66: Access to an undefined property hiqdev\php\billing\tests\behat\bootstrap\BillingContext::$builder. (property.notFound)
Learn more: https://phpstan.org/blog/solving-phpstan-access-to-undefined-property


74-74: Access to an undefined property hiqdev\php\billing\tests\behat\bootstrap\BillingContext::$builder. (property.notFound)
Learn more: https://phpstan.org/blog/solving-phpstan-access-to-undefined-property


124-124: Access to an undefined property hiqdev\php\billing\tests\behat\bootstrap\BillingContext::$builder. (property.notFound)
Learn more: https://phpstan.org/blog/solving-phpstan-access-to-undefined-property


133-133: Access to an undefined property hiqdev\php\billing\tests\behat\bootstrap\BillingContext::$builder. (property.notFound)
Learn more: https://phpstan.org/blog/solving-phpstan-access-to-undefined-property


140-140: Instantiated class hiqdev\php\billing\tests\behat\bootstrap\PendingException not found. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


151-151: Call to static method assertCount() on an unknown class PHPUnit\Framework\Assert. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


151-151: Undefined variable: $sales (variable.undefined)


160-160: Access to an undefined property hiqdev\php\billing\tests\behat\bootstrap\BillingContext::$builder. (property.notFound)
Learn more: https://phpstan.org/blog/solving-phpstan-access-to-undefined-property


166-166: Parameter $usesTable of method hiqdev\php\billing\tests\behat\bootstrap\BillingContext::purchaseTargetWithInitialUses() has invalid type Behat\Gherkin\Node\TableNode. (class.notFound)


177-177: Call to an undefined method hiqdev\php\billing\tests\behat\bootstrap\BillingContext::mayFail(). (method.notFound)


178-178: Access to an undefined property hiqdev\php\billing\tests\behat\bootstrap\BillingContext::$builder. (property.notFound)
Learn more: https://phpstan.org/blog/solving-phpstan-access-to-undefined-property


188-188: Access to an undefined property hiqdev\php\billing\tests\behat\bootstrap\BillingContext::$builder. (property.notFound)
Learn more: https://phpstan.org/blog/solving-phpstan-access-to-undefined-property


196-196: Access to an undefined property hiqdev\php\billing\tests\behat\bootstrap\BillingContext::$builder. (property.notFound)
Learn more: https://phpstan.org/blog/solving-phpstan-access-to-undefined-property


204-204: Access to an undefined property hiqdev\php\billing\tests\behat\bootstrap\BillingContext::$builder. (property.notFound)
Learn more: https://phpstan.org/blog/solving-phpstan-access-to-undefined-property


213-213: Access to an undefined property hiqdev\php\billing\tests\behat\bootstrap\BillingContext::$builder. (property.notFound)
Learn more: https://phpstan.org/blog/solving-phpstan-access-to-undefined-property


221-221: Access to an undefined property hiqdev\php\billing\tests\behat\bootstrap\BillingContext::$builder. (property.notFound)
Learn more: https://phpstan.org/blog/solving-phpstan-access-to-undefined-property


230-230: Access to an undefined property hiqdev\php\billing\tests\behat\bootstrap\BillingContext::$builder. (property.notFound)
Learn more: https://phpstan.org/blog/solving-phpstan-access-to-undefined-property


242-242: Call to static method assertSame() on an unknown class PHPUnit\Framework\Assert. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


243-243: Call to static method assertSame() on an unknown class PHPUnit\Framework\Assert. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


244-244: Call to static method assertEquals() on an unknown class PHPUnit\Framework\Assert. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


245-245: Call to static method assertSame() on an unknown class PHPUnit\Framework\Assert. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


246-246: Call to static method assertEquals() on an unknown class PHPUnit\Framework\Assert. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


247-247: Call to static method assertEquals() on an unknown class PHPUnit\Framework\Assert. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


249-249: Call to static method assertEquals() on an unknown class PHPUnit\Framework\Assert. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


253-253: Method hiqdev\php\billing\tests\behat\bootstrap\BillingContext::findBill() has invalid return type hiqdev\php\billing\bill\BillInterface. (class.notFound)


255-255: Access to an undefined property hiqdev\php\billing\tests\behat\bootstrap\BillingContext::$builder. (property.notFound)
Learn more: https://phpstan.org/blog/solving-phpstan-access-to-undefined-property


267-267: Access to an undefined property hiqdev\php\billing\tests\behat\bootstrap\BillingContext::$builder. (property.notFound)
Learn more: https://phpstan.org/blog/solving-phpstan-access-to-undefined-property


273-273: Call to static method assertEquals() on an unknown class PHPUnit\Framework\Assert. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


281-281: Call to static method assertEquals() on an unknown class PHPUnit\Framework\Assert. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


300-300: Call to static method assertNotNull() on an unknown class PHPUnit\Framework\Assert. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


301-301: Call to static method assertSame() on an unknown class PHPUnit\Framework\Assert. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


302-302: Call to static method assertSame() on an unknown class PHPUnit\Framework\Assert. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


303-303: Call to static method assertEquals() on an unknown class PHPUnit\Framework\Assert. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


304-304: Call to static method assertSame() on an unknown class PHPUnit\Framework\Assert. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


305-305: Call to static method assertEquals() on an unknown class PHPUnit\Framework\Assert. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


306-306: Call to static method assertEquals() on an unknown class PHPUnit\Framework\Assert. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


309-309: Method hiqdev\php\billing\tests\behat\bootstrap\BillingContext::findCharge() has invalid return type hiqdev\php\billing\charge\ChargeInterface. (class.notFound)


325-325: Method hiqdev\php\billing\tests\behat\bootstrap\BillingContext::getNextCharge() has invalid return type hiqdev\php\billing\charge\ChargeInterface. (class.notFound)


398-398: Access to an undefined property hiqdev\php\billing\tests\behat\bootstrap\BillingContext::$builder. (property.notFound)
Learn more: https://phpstan.org/blog/solving-phpstan-access-to-undefined-property


398-398: Call to an undefined method hiqdev\php\billing\tests\behat\bootstrap\BillingContext::mayFail(). (method.notFound)


406-406: Access to an undefined property hiqdev\php\billing\tests\behat\bootstrap\BillingContext::$builder. (property.notFound)
Learn more: https://phpstan.org/blog/solving-phpstan-access-to-undefined-property


406-406: Call to an undefined method hiqdev\php\billing\tests\behat\bootstrap\BillingContext::mayFail(). (method.notFound)


414-414: Access to an undefined property hiqdev\php\billing\tests\behat\bootstrap\BillingContext::$builder. (property.notFound)
Learn more: https://phpstan.org/blog/solving-phpstan-access-to-undefined-property


437-437: Call to static method fail() on an unknown class PHPUnit\Framework\Assert. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


445-445: Access to an undefined property hiqdev\php\billing\tests\behat\bootstrap\BillingContext::$builder. (property.notFound)
Learn more: https://phpstan.org/blog/solving-phpstan-access-to-undefined-property


449-449: Call to static method assertCount() on an unknown class PHPUnit\Framework\Assert. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


457-457: Call to an undefined method hiqdev\php\billing\tests\behat\bootstrap\BillingContext::assertCaughtExceptionMatches(). (method.notFound)


465-465: Access to an undefined property hiqdev\php\billing\tests\behat\bootstrap\BillingContext::$builder. (property.notFound)
Learn more: https://phpstan.org/blog/solving-phpstan-access-to-undefined-property


473-473: Access to an undefined property hiqdev\php\billing\tests\behat\bootstrap\BillingContext::$builder. (property.notFound)
Learn more: https://phpstan.org/blog/solving-phpstan-access-to-undefined-property


479-479: Parameter $usesTable of method hiqdev\php\billing\tests\behat\bootstrap\BillingContext::targetHasTheFollowingUses() has invalid type Behat\Gherkin\Node\TableNode. (class.notFound)


482-482: Access to an undefined property hiqdev\php\billing\tests\behat\bootstrap\BillingContext::$builder. (property.notFound)
Learn more: https://phpstan.org/blog/solving-phpstan-access-to-undefined-property


483-483: Call to static method assertCount() on an unknown class PHPUnit\Framework\Assert. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


486-486: Call to static method assertSame() on an unknown class PHPUnit\Framework\Assert. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


490-490: Call to static method assertEquals() on an unknown class PHPUnit\Framework\Assert. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols

Additional comments not posted (5)
src/sale/Sale.php (3)

56-56: Change in data type for $data property from array to string.

This change aligns with the PR's objective to handle JSON string conversion and validation.


64-71: Constructor now accepts $data as a parameter and sets it using setData.

Ensure that all instantiations of Sale are updated to pass the correct data type.


153-155: getData method now returns an array decoded from the JSON string stored in $data.

This change supports the new data handling strategy as described in the PR summary.

Tools
PHPStan

155-155: Call to static method decode() on an unknown class yii\helpers\Json. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols

tests/behat/bootstrap/BillingContext.php (2)

191-197: Added method recalculateAutoTariff to handle auto tariff recalculations for a target.

This addition enhances the testing capabilities by allowing automated tariff recalculations in test scenarios.

Tools
PHPStan

196-196: Access to an undefined property hiqdev\php\billing\tests\behat\bootstrap\BillingContext::$builder. (property.notFound)
Learn more: https://phpstan.org/blog/solving-phpstan-access-to-undefined-property


242-249: Enhanced assertions in billWithTime to include detailed checks for bill properties.

These changes improve the robustness of the tests by ensuring that all bill properties match expected values.

Tools
PHPStan

242-242: Call to static method assertSame() on an unknown class PHPUnit\Framework\Assert. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


243-243: Call to static method assertSame() on an unknown class PHPUnit\Framework\Assert. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


244-244: Call to static method assertEquals() on an unknown class PHPUnit\Framework\Assert. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


245-245: Call to static method assertSame() on an unknown class PHPUnit\Framework\Assert. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


246-246: Call to static method assertEquals() on an unknown class PHPUnit\Framework\Assert. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


247-247: Call to static method assertEquals() on an unknown class PHPUnit\Framework\Assert. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


249-249: Call to static method assertEquals() on an unknown class PHPUnit\Framework\Assert. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols

@@ -17,6 +17,7 @@
use hiqdev\php\billing\Exception\InvariantException;
use hiqdev\php\billing\plan\PlanInterface;
use hiqdev\php\billing\target\TargetInterface;
use yii\helpers\Json;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This package does not depend on Yii.

@@ -52,22 +53,22 @@ class Sale implements SaleInterface

protected ?DateTimeImmutable $closeTime = null;

protected ?array $data = null;
protected ?string $data = null;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why do you prefer to store data as a JSON string instead of an array?

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between 2f0f4c9 and c0c1a82.

Files selected for processing (1)
  • src/sale/Sale.php (2 hunks)
Additional context used
PHPStan
src/sale/Sale.php

27-27: Class hiqdev\php\billing\sale\Sale implements unknown interface hiqdev\php\billing\sale\SaleInterface. (interface.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


60-60: Parameter $target of method hiqdev\php\billing\sale\Sale::__construct() has invalid type hiqdev\php\billing\target\TargetInterface. (class.notFound)


61-61: Parameter $customer of method hiqdev\php\billing\sale\Sale::__construct() has invalid type hiqdev\php\billing\customer\CustomerInterface. (class.notFound)


62-62: Parameter $plan of method hiqdev\php\billing\sale\Sale::__construct() has invalid type hiqdev\php\billing\plan\PlanInterface. (class.notFound)


112-112: Instantiated class hiqdev\php\billing\Exception\InvariantException not found. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


116-116: Instantiated class hiqdev\php\billing\Exception\ConstraintException not found. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols


128-128: Instantiated class hiqdev\php\billing\Exception\CannotReassignException not found. (class.notFound)
Learn more at https://phpstan.org/user-guide/discovering-symbols

Additional comments not posted (2)
src/sale/Sale.php (2)

133-135: Verify and ensure setData method correctly handles JSON conversion.

The setData method should convert array inputs to JSON strings, ensuring consistency with the getData method. Please verify its implementation and ensure it aligns with the changes made to the getData method.


Line range hint 27-27: Verify project configuration for static analysis tool.

The static analysis tool has reported several issues regarding unknown classes and interfaces. This might be due to the tool not being properly configured with the project's dependencies or context. Please verify the configuration to ensure accurate analysis.

Also applies to: 60-62, 112-128

@@ -17,6 +17,7 @@
use hiqdev\php\billing\Exception\InvariantException;
use hiqdev\php\billing\plan\PlanInterface;
use hiqdev\php\billing\target\TargetInterface;
use yii\helpers\Json;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Remove unnecessary import of yii\helpers\Json.

This package does not depend on Yii, as noted by SilverFire in a previous comment. Please remove this import to avoid confusion and potential errors.

Comment on lines +133 to +135
public function getData(): ?array
{
return $this->data;
return !empty($this->data) ? $this->data : null;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Update getData method to handle JSON strings.

The getData method should return an array decoded from the JSON string stored in $data, as per the PR's objective and the AI-generated summary. Currently, it still treats $data as an array.

- return !empty($this->data) ? $this->data : null;
+ return !empty($this->data) ? json_decode($this->data, true) : null;
Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation.

Suggested change
public function getData(): ?array
{
return $this->data;
return !empty($this->data) ? $this->data : null;
public function getData(): ?array
{
return !empty($this->data) ? json_decode($this->data, true) : null;

Comment on lines 242 to 249
Assert::assertSame($type, $bill->getType()->getName(), "Bill type mismatch: expected $type, got {$bill->getType()->getName()}");
Assert::assertSame($target, $bill->getTarget()->getFullName(), "Bill target mismatch: expected $target, got {$bill->getTarget()->getFullName()}");
Assert::assertEquals(bcmul($sum, 100), $bill->getSum()->getAmount(), "Bill sum mismatch: expected $sum, got {$bill->getSum()->getAmount()}");
Assert::assertSame($currency, $bill->getSum()->getCurrency()->getCode(), "Bill currency mismatch: expected $currency, got {$bill->getSum()->getCurrency()->getCode()}");
Assert::assertEquals((float)$quantity, (float)$bill->getQuantity()->getQuantity(), "Bill quantity mismatch: expected $quantity, got {$bill->getQuantity()->getQuantity()}");
Assert::assertEquals(strtolower($unit), strtolower($bill->getQuantity()->getUnit()->getName()), "Bill unit mismatch: expected $unit, got {$bill->getQuantity()->getUnit()->getName()}");
if ($time) {
Assert::assertEquals(new DateTimeImmutable($time), $bill->getTime());
Assert::assertEquals(new DateTimeImmutable($time), $bill->getTime(), "Bill time mismatch: expected $time, got {$bill->getTime()->format(DATE_ATOM)}");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems you've mixed different PRs

Comment on lines 348 to 351
if (str_contains($time, 'pm')) {
$time = str_replace('pm', 'm', $time);
$time = date($time, strtotime('-1 month'));
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same here

Comment on lines 191 to 198
/**
* @Given /recalculate autotariff for target (\S+)( +at (\S+))?$/
*/
public function recalculateAutoTariff(string $target, string $time = null): void
{
$this->builder->clientSetAutoTariff($target, $time);
}

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

??

bladeroot and others added 3 commits June 5, 2024 11:36
Co-authored-by: Dmytro Naumenko <d.naumenko.a@gmail.com>
@SilverFire SilverFire merged commit b75421a into hiqdev:master Jun 5, 2024
1 of 2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants