xp-framework / core

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

Make all InputStream & OutputStream implementations implement Value #311

Closed thekid closed 2 years ago

thekid commented 2 years ago

See issue #310

Before

$ xp -w 'new \io\streams\FileOutputStream("composer.json")'
io.streams.FileOutputStream {
  *file => io.File(uri= C:\...\core\composer.json, mode= wb)
}

After

$ xp -w 'new \io\streams\FileOutputStream("composer.json")'
io.streams.FileOutputStream<io.File(uri= C:\...\core\composer.json, mode= wb)>
thekid commented 2 years ago

Released in https://github.com/xp-framework/core/releases/tag/v11.3.0