Skip to content

Commit edf1e3f

Browse files
committed
Extend for explicit filename parameter
1 parent 990d84d commit edf1e3f

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
## Features
88

99
* Extend interface with empty attribute value getter
10+
* Extend interface for import explizit filename
1011

1112
# Version 4.0.0
1213

src/Subject/FileResolverConfigurationInterface.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -29,42 +29,42 @@ interface FileResolverConfigurationInterface
2929
/**
3030
* The default prefix sequence of the import files.
3131
*
32-
* @var string
32+
* @var string
3333
*/
3434
const DEFAULT_PREFIX = '.*';
3535

3636
/**
3737
* The default filename sequence of the import files.
3838
*
39-
* @var string
39+
* @var string
4040
*/
4141
const DEFAULT_FILENAME = '.*';
4242

4343
/**
4444
* The counter sequence of the import files.
4545
*
46-
* @var string
46+
* @var string
4747
*/
4848
const DEFAULT_COUNTER = '\d+';
4949

5050
/**
5151
* The file suffix for import files.
5252
*
53-
* @var string
53+
* @var string
5454
*/
5555
const DEFAULT_SUFFIX = 'csv';
5656

5757
/**
5858
* The file suffix for OK file.
5959
*
60-
* @var string
60+
* @var string
6161
*/
6262
const DEFAULT_OK_FILE_SUFFIX = 'ok';
6363

6464
/**
6565
* The separator char for the elements of the file.
6666
*
67-
* @var string
67+
* @var string
6868
*/
6969
const DEFAULT_ELEMENT_SEPARATOR = '_';
7070

0 commit comments

Comments
 (0)