This file contains 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
BEGIN MESSAGE. | |
RaYyxqqFhOmFksm Up5kwFwLqC06oSW biD2UdkzdCtkU1Q TYmT2GFuxD6gucN | |
rbEPSlJZBokNyGA vd3S07jFTTKTCKq 6Xr2MZHgg6vmr8L WgOCVQgEeG2cp9E | |
DXaBZbVS2PxNyLe 8mAaFeimxu8R1I3 L7ybwzCY79ePatc yWp97QXS5BtkELl | |
YYvoPdk3R8w1PHJ apBItQo423EKB4u j2sDh0aLMzWSiL. | |
END MESSAGE. |
This file contains 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
server: | |
verbosity: 1 | |
port: 53 | |
username: "jonny" | |
tls-cert-bundle: "/usr/local/etc/[email protected]/cert.pem" | |
auto-trust-anchor-file: "/usr/local/etc/unbound/root.key" | |
aggressive-nsec: yes | |
hide-identity: yes | |
hide-version: yes | |
prefetch: yes |
This file contains 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 | |
trait One | |
{ | |
public function hello() | |
{ | |
echo 'Hello One' . PHP_EOL; | |
} | |
public function bye() |
This file contains 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 | |
namespace Foo; | |
class MyClass | |
{ | |
use Bar; | |
} |
This file contains 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 | |
namespace Foo; | |
trait Bar | |
{ | |
public function baz(string $value): string | |
{ | |
// modify $value in some way | |
return mb_strtoupper($value) |
This file contains 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 | |
$variable = <<<TOKEN | |
Some text | |
TOKEN; |
This file contains 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 | |
try { | |
json_decode('{invalid{json', false, 512, JSON_THROW_ON_ERROR); | |
} catch (\JSONException $exception) { | |
MyLogger::error($exception->getMessage()); | |
} |
This file contains 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 | |
class Foo | |
{ | |
public static function bar(bool $input) | |
{ | |
if ($input === true) { | |
$variable = <<<TOKEN | |
Hello | |
World! |
This file contains 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 | |
class Foo | |
{ | |
public static function bar(bool $input) | |
{ | |
if ($input === true) { | |
$variable = <<<TOKEN | |
Hello | |
World! |
This file contains 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 | |
// some class | |
// some method | |
// an if statement | |
$variable = <<<TOKEN | |
Hello | |
World! | |
TOKEN; |
NewerOlder