Skip to content

Instantly share code, notes, and snippets.

@estefanionsantos
Last active September 6, 2022 14:11
Show Gist options
  • Save estefanionsantos/6fd0fdb80199db2d94ab470fa5befb9b to your computer and use it in GitHub Desktop.
Save estefanionsantos/6fd0fdb80199db2d94ab470fa5befb9b to your computer and use it in GitHub Desktop.
exemple wasp log
<?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