Skip to content

Commit

Permalink
Merge branch '1.x' of github.com:rzarno/flow into 1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
Michal Zarnecki committed Jan 9, 2024
2 parents d474e5e + 5f5f1c5 commit 9da2ff8
Show file tree
Hide file tree
Showing 17 changed files with 28 additions and 27 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## [Unreleased] - 2024-01-08
## [Unreleased] - 2024-01-09

### Added
- [#905](https://github.com/flow-php/flow/pull/905) - **Base symfony skeleton for a landing page** - [@owsiakl](https://github.com/owsiakl)
Expand All @@ -22,6 +22,7 @@
- [#869](https://github.com/flow-php/flow/pull/869) - **RDSL library** - [@norberttech](https://github.com/norberttech)

### Changed
- [#907](https://github.com/flow-php/flow/pull/907) - **Make sure that entries are "stringable"** - [@stloyd](https://github.com/stloyd)
- [#901](https://github.com/flow-php/flow/pull/901) - **Return types of functions in DSL** - [@norberttech](https://github.com/norberttech)
- [#899](https://github.com/flow-php/flow/pull/899) - **Reverted removed copmressing serializer** - [@norberttech](https://github.com/norberttech)
- [#895](https://github.com/flow-php/flow/pull/895) - **Simplified partitioning datasets by DateTimeEntry** - [@norberttech](https://github.com/norberttech)
Expand Down
2 changes: 1 addition & 1 deletion src/core/etl/src/Flow/ETL/Row/Entry.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
/**
* @template TValue
*/
interface Entry
interface Entry extends \Stringable
{
public function __toString() : string;

Expand Down
2 changes: 1 addition & 1 deletion src/core/etl/src/Flow/ETL/Row/Entry/ArrayEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* @implements Entry<array>
*/
final class ArrayEntry implements \Stringable, Entry
final class ArrayEntry implements Entry
{
use EntryRef;

Expand Down
2 changes: 1 addition & 1 deletion src/core/etl/src/Flow/ETL/Row/Entry/BooleanEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* @implements Entry<bool>
*/
final class BooleanEntry implements \Stringable, Entry
final class BooleanEntry implements Entry
{
use EntryRef;

Expand Down
2 changes: 1 addition & 1 deletion src/core/etl/src/Flow/ETL/Row/Entry/DateTimeEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* @implements Entry<\DateTimeInterface>
*/
final class DateTimeEntry implements \Stringable, Entry
final class DateTimeEntry implements Entry
{
use EntryRef;

Expand Down
2 changes: 1 addition & 1 deletion src/core/etl/src/Flow/ETL/Row/Entry/FloatEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* @implements Entry<float>
*/
final class FloatEntry implements \Stringable, Entry
final class FloatEntry implements Entry
{
use EntryRef;

Expand Down
2 changes: 1 addition & 1 deletion src/core/etl/src/Flow/ETL/Row/Entry/IntegerEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* @implements Entry<int>
*/
final class IntegerEntry implements \Stringable, Entry
final class IntegerEntry implements Entry
{
use EntryRef;

Expand Down
2 changes: 1 addition & 1 deletion src/core/etl/src/Flow/ETL/Row/Entry/JsonEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* @implements Entry<string>
*/
final class JsonEntry implements \Stringable, Entry
final class JsonEntry implements Entry
{
use EntryRef;

Expand Down
2 changes: 1 addition & 1 deletion src/core/etl/src/Flow/ETL/Row/Entry/NullEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
/**
* @implements Entry<null>
*/
final class NullEntry implements \Stringable, Entry
final class NullEntry implements Entry
{
use EntryRef;

Expand Down
2 changes: 1 addition & 1 deletion src/core/etl/src/Flow/ETL/Row/Entry/ObjectEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* @implements Entry<object>
*/
final class ObjectEntry implements \Stringable, Entry
final class ObjectEntry implements Entry
{
use EntryRef;

Expand Down
4 changes: 2 additions & 2 deletions src/core/etl/src/Flow/ETL/Row/Entry/StringEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* @implements Entry<string>
*/
final class StringEntry implements \Stringable, Entry
final class StringEntry implements Entry
{
use EntryRef;

Expand All @@ -24,7 +24,7 @@ final class StringEntry implements \Stringable, Entry
/**
* @throws InvalidArgumentException
*/
public function __construct(private readonly string $name, private string $value)
public function __construct(private readonly string $name, private readonly string $value)
{
if ('' === $name) {
throw InvalidArgumentException::because('Entry name cannot be empty');
Expand Down
2 changes: 1 addition & 1 deletion src/core/etl/src/Flow/ETL/Row/Entry/StructureEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
/**
* @implements Entry<array<array-key, mixed>>
*/
final class StructureEntry implements \Stringable, Entry
final class StructureEntry implements Entry
{
use EntryRef;

Expand Down
2 changes: 1 addition & 1 deletion src/core/etl/src/Flow/ETL/Row/Entry/UuidEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/**
* @implements Entry<Entry\Type\Uuid>
*/
final class UuidEntry implements \Stringable, Entry
final class UuidEntry implements Entry
{
use EntryRef;

Expand Down
2 changes: 1 addition & 1 deletion src/core/etl/src/Flow/ETL/Row/Entry/XMLEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
/**
* @implements Entry<\DOMDocument>
*/
final class XMLEntry implements \Stringable, Entry
final class XMLEntry implements Entry
{
use EntryRef;

Expand Down
2 changes: 1 addition & 1 deletion src/core/etl/src/Flow/ETL/Row/Entry/XMLNodeEntry.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
/**
* @implements Entry<\DOMNode>
*/
final class XMLNodeEntry implements \Stringable, Entry
final class XMLNodeEntry implements Entry
{
use EntryRef;

Expand Down
12 changes: 6 additions & 6 deletions tools/blackfire/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions tools/phpstan/composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 9da2ff8

Please sign in to comment.