Skip to content

Commit

Permalink
Merge pull request #11053 from frederic34/patch-9
Browse files Browse the repository at this point in the history
In export modules, id is string
  • Loading branch information
eldy committed Apr 24, 2019
2 parents 8686552 + 53c851d commit 6d39731
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion htdocs/core/modules/export/export_csv.modules.php
Expand Up @@ -33,7 +33,7 @@
class ExportCsv extends ModeleExports
{
/**
* @var int ID
* @var string ID ex: csv, tsv, excel...
*/
public $id;

Expand Down
2 changes: 1 addition & 1 deletion htdocs/core/modules/export/export_excel.modules.php
Expand Up @@ -33,7 +33,7 @@
class ExportExcel extends ModeleExports
{
/**
* @var int ID
* @var string ID
*/
public $id;

Expand Down
2 changes: 1 addition & 1 deletion htdocs/core/modules/export/export_excel2007.modules.php
Expand Up @@ -34,7 +34,7 @@
class ExportExcel2007 extends ExportExcel
{
/**
* @var int ID
* @var string ID
*/
public $id;

Expand Down
2 changes: 1 addition & 1 deletion htdocs/core/modules/export/export_excel2007new.modules.php
Expand Up @@ -35,7 +35,7 @@
class ExportExcel2007new extends ModeleExports
{
/**
* @var int ID
* @var string ID
*/
public $id;

Expand Down
2 changes: 1 addition & 1 deletion htdocs/core/modules/export/export_tsv.modules.php
Expand Up @@ -32,7 +32,7 @@
class ExportTsv extends ModeleExports
{
/**
* @var int ID
* @var string ID
*/
public $id;

Expand Down

0 comments on commit 6d39731

Please sign in to comment.