xp-framework / core

The XP Framework is an all-purpose, object oriented PHP framework.
Other
19 stars 6 forks source link

Compact maps with a single key/value pair into one line #274

Closed thekid closed 2 years ago

thekid commented 3 years ago

Before:

$ xp -w 'use util\Objects; Objects::stringOf(["key" => "value"])'
[
  key => "value"
]

After:

$ xp -w 'use util\Objects; Objects::stringOf(["key" => "value"])'
[key => "value"]
thekid commented 3 years ago

This has the potential of introducing small and subtle breaks, and should therefore be kept for XP 11