Fonata
5d4643b201
Allow _guess_delimiter to work with a single row of data
...
Fix #206
2021-11-07 13:36:38 +01:00
Fonata
a28fc6ab0a
refactor: simplify code without changing behavior
2021-11-07 13:36:38 +01:00
Fonata
99daaa7235
Bugfix: $csv->parseFile now sets $this->data
...
This adds consistency because $csv->parse() does the same.
Fix #200
Fix #201
2021-06-20 23:21:46 +02:00
Fonata
05826c2bbf
Make return value of parseFile() explicit as false if parsing failed
...
In practise this changes nothing because $this->file_data would typically be empty.
The only exception is if the object was reused from a previous parsing operation.
2021-06-20 23:21:46 +02:00
Fonata
731900effe
DocBlock types: Use Psalm notation for 2-dimensional array
2021-06-20 23:21:46 +02:00
Fonata
913c3b1b94
Source code comments: add more information to DocBlocks
2021-06-20 23:21:46 +02:00
Fonata
96b2784d3c
Source code comments: don’t repeat the field we are describing
...
The motivation for this change is how the PhpStorm IDE displays help texts.
Because the enter is shown as a space in the tooltips/help hovers, the
previous version was harder to read than after this commit.
2021-06-20 23:21:46 +02:00
Fonata
05ed8ec667
Rename parameter to reduce confusion
2021-04-14 20:12:43 +02:00
Fonata
2425c1bbda
Deprecation: Stronger language in PHP DocBlock
2021-04-14 20:12:43 +02:00
Fonata
3ce6a82052
Make deprecation clearer
2021-04-14 20:12:43 +02:00
Fonata
abae91a1a2
Make condition easier to read; no change in logic
2021-04-14 20:12:43 +02:00
Fonata
45f079b5dd
Code comment for future me: I was afraid the code would surprise users
2021-04-14 20:12:43 +02:00
Fonata
2a154869b4
Fix PHP DocBlock: some tools thought the function always returns true
...
(Also, there was a spelling mistake)
2021-04-14 20:12:43 +02:00
Fonata
d1186fcafa
Deprecate support for file paths in __construct() and parse()
...
See https://github.com/parsecsv/parsecsv-for-php/issues/198
2021-04-14 20:12:43 +02:00
Fonata
6a54a6a509
Move parsing of .php files (sic!) to _rfile for easier refactoring
...
Note that this arcane code comes from v0.2.0 beta:
5f0e6b03d4
2021-04-14 20:12:43 +02:00
Petri Haikonen
b4e4c14b42
PHPUnit 6 instead of 4, to get rid of wrapper
...
The TestCase wrapper caused PhpStorm to show warnings about
multiple implementations
Fixes #188
Improved some type hints in DocBlocks
2020-04-25 19:17:04 +02:00
susgo
5336800ec6
Merge pull request #186 from parsecsv/bu-object-test
...
Added test for the case of objects as cells
2020-01-06 19:35:23 +01:00
Fonata
b792a6cc7b
Code quality: Removed superfluous brackets; should not change anything
2020-01-06 18:04:45 +01:00
Fonata
d7ba892d38
Bug fix for $csv->conditions = 'rating is LESS than 4'
...
The $op was wrong because of upper case
2019-12-25 14:54:50 +01:00
Craig Morris
62fc367c14
Run https://gist.github.com/theodorejb/763b83a43522b0fc1755a537663b1863
2019-12-25 07:45:00 -05:00
susgo
044122efb9
Merge pull request #180 from parsecsv/more-conditions-bu
...
Bugfix for verbal conditions
2019-11-04 21:20:58 +01:00
Fonata
e45eb18213
Bugfix: All operators containing "is" or "equals" were broken
...
Fixes #179
2019-11-03 23:09:23 +01:00
Fonata
5340ab9584
New feature: Verbal condition operators don't have to be lower case
2019-11-03 23:08:08 +01:00
Fonata
8b583daa08
Improved documentation comments
2019-09-14 04:10:58 +02:00
Fonata
b6dccf5fa6
Use in_array() to make code more readable
2019-09-14 03:56:00 +02:00
Fonata
5ca540daa7
Avoid PhpStorm inspection for $value{0} on empty string (prevent E_NOTICE)
...
Here, $value is not empty, but the PhpStorm inspection doesn't get that.
I want to have zero warnings for this library.
2019-09-14 01:19:40 +02:00
Fonata
f89ed5978d
Simplified RegEx: {1} is the default and can be dropped
2019-09-14 01:17:09 +02:00
Fonata
f053cdde80
New feature: unparse now also understands $use_mb_convert_encoding
2019-09-14 01:14:41 +02:00
Fonata
62ae4e5fc3
Formated code using PhpStorm 2019.2.1 - only DocBlocks changed
2019-09-14 01:05:21 +02:00
Fonata
637f79c2e6
Improved documentation and parameter declaration
...
No functional changes.
2019-03-22 08:17:55 +01:00
Fonata
e3105d4003
Renamed protected functions: no end user should be tempted to call them
2019-03-22 08:17:55 +01:00
Fonata
531ac26e11
Improved spelling in comments
2019-02-23 12:44:31 +01:00
Susann Sgorzaly
52ad56c66a
fixes unparse bug if no data for unparsing remain (comments #150 )
2018-11-14 08:26:39 +01:00
Susann Sgorzaly
ab9e8a0af9
fixes unparse bug if array ids doesn't begin on zero (comments#149)
2018-11-14 08:26:39 +01:00
Fonata
8aa61914f7
Function load_data: check length of input, prevents E_NOTICE if too long
...
Fixes #151
2018-09-25 00:35:03 +02:00
Fonata
55890da647
Replace fread with file_get_contents to avoid the 8192 byte limit
...
This can happen when using streams.
Specific problem occurred with a file uploaded with Drupal's ``managed_file``
Form API element.
See https://secure.php.net/manual/en/function.fread.php
2018-07-31 21:59:04 +02:00
Fonata
b82ad03bd5
Ignore entirely empty lines at the end of files
...
Closes #141
2018-04-29 11:08:40 +02:00
Fonata
de8e792ef4
Merge branch 'feature-datacollections'
...
Conflicts:
src/Csv.php
2018-04-02 14:40:32 +02:00
William Knauss
406e1e415f
added getCollection method that returns a Illuminate\Support\Collection object - useful for using the mapping functions
2018-04-02 14:32:17 +02:00
Fonata
927e785891
Merge pull request #133 from parsecsv/fixing-132-output-with-fields
...
Bug fix: calling ->output() with $fields parameter set
2018-03-28 13:25:05 +02:00
Fonata
bdd4e5ef25
Merge branch 'master' into offset-comment-and-tests
...
Conflicts:
tests/methods/ParseTest.php
2018-03-17 12:42:18 +01:00
Fonata
93f177a396
Merged two ifs in _validate_row_condition to prevent
...
This is to a sane count of zero PhpStorm inspections. In particular,
this is NestedPositiveIfStatementsInspection from EA Extended.
2018-03-17 12:17:25 +01:00
Fonata
f5ff7332a4
Set $data field on unparse. This fixes issue #132 .
2018-03-17 12:16:39 +01:00
Fonata
4b60d38fb0
Tell PhpStorm not to complain about reference mismatch
...
http://blog.jpauli.tech/2014/06/27/references-mismatch.html#what-is-a-reference-mismatch
2018-03-17 12:05:01 +01:00
Fonata
c8d15557cb
Fixed parse()'s return value: return true only if $data is useful
2018-03-17 12:05:01 +01:00
Fonata
10895788c8
Slightly simplified getTotalDataRowCount, added test
...
The brackets () in the pattern were not needed, as only
$matches[0] was accessed, not $matches[1].
The @var is useful for PhpStorm's Php Inspections (EA Extended).
More details here: https://github.com/kalessil/phpinspectionsea/blob/master/docs/types-compatibility.md#foreach-source-to-iterate-over
2018-03-17 12:05:01 +01:00
Fonata
ffed7ffdc0
Only improved PHPDoc blocks, including sentance for output()
2018-03-17 12:05:01 +01:00
Fonata
7498a963ac
_validate_fields_for_unparse: more info in UnexpectedValueException
2018-03-17 11:42:44 +01:00
Fonata
49728a74bb
Only reformatted the source code
2018-03-17 10:31:09 +01:00
Susann Sgorzaly
5bc6d09b5e
fixes bug on _validate_fields_for_unparse() if titles property is used instead of fields parameter for changing the titles for unparsing
2018-03-12 08:25:42 +01:00