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 | |
$test = new \stdClass; | |
$clone1 = clone $test; | |
$clone2 = clone $test; | |
$clone1_0 = clone $clone1; | |
echo 'TEST hash'.spl_object_hash($test) . PHP_EOL; | |
echo 'CLONE1 hash'.spl_object_hash($clone1) . PHP_EOL; |
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
[Unit] | |
Description=Flexget Daemon | |
After=network.target | |
[Service] | |
Type=simple | |
User=osmc | |
UMask=000 | |
ExecStart=/usr/local/bin/flexget daemon start | |
ExecStop=/usr/local/bin/flexget daemon stop |