Skip to content

Commit

Permalink
Add missing namespace (#1085)
Browse files Browse the repository at this point in the history
* Add Missing namespace

Missing Grid namespace on ExcelExport Class

* Update XMLExport.php

* Update JSONExport.php
  • Loading branch information
Thierrygen committed May 11, 2023
1 parent 33c09f4 commit 36c43b5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Grid/Export/ExcelExport.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@

namespace APY\DataGridBundle\Grid\Export;

use APY\DataGridBundle\Grid\Grid;

/**
* Excel (This export produces a warning with new Office Excel).
*/
Expand Down
2 changes: 2 additions & 0 deletions Grid/Export/JSONExport.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@

namespace APY\DataGridBundle\Grid\Export;

use APY\DataGridBundle\Grid\Grid;

/**
* JSON.
*/
Expand Down
1 change: 1 addition & 0 deletions Grid/Export/XMLExport.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
use Symfony\Component\Serializer\Encoder\XmlEncoder;
use Symfony\Component\Serializer\Normalizer\GetSetMethodNormalizer;
use Symfony\Component\Serializer\Serializer;
use APY\DataGridBundle\Grid\Grid;

/**
* XML.
Expand Down

0 comments on commit 36c43b5

Please sign in to comment.