1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-06 03:50:04 +02:00

Moving composer into vendor folder

This commit is contained in:
Daniel 2021-10-05 14:32:55 -03:00
parent 5464c8c51e
commit c721fb236a
21315 changed files with 2928085 additions and 2928183 deletions

View file

@ -1,19 +1,19 @@
<?php
use React\EventLoop\Loop;
require __DIR__ . '/../../vendor/autoload.php';
$loop = Loop::get();
$loop->futureTick(function () {
echo 'b';
});
$loop->futureTick(function () {
echo 'c';
});
echo 'a';
$loop->run();
<?php
use React\EventLoop\Loop;
require __DIR__ . '/../../vendor/autoload.php';
$loop = Loop::get();
$loop->futureTick(function () {
echo 'b';
});
$loop->futureTick(function () {
echo 'c';
});
echo 'a';
$loop->run();