Last active
September 6, 2022 14:11
-
-
Save estefanionsantos/6fd0fdb80199db2d94ab470fa5befb9b to your computer and use it in GitHub Desktop.
exemple wasp log
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$arr = [ | |
'lorem', | |
'ipsum', | |
'dolor' | |
]; | |
$int = 1; | |
$bool = true; | |
$str = 'some text here'; | |
$float = 5.2; | |
$obj = new class{ | |
public $name = 'Lorem Santos'; | |
public $email = '[email protected]'; | |
}; | |
TestLog::debug($arr); | |
TestLog::debug($int); | |
TestLog::debug($bool); | |
TestLog::debug($str); | |
TestLog::debug($float); | |
TestLog::debug($obj); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment