What does this Laravel container program print?
php
<?php
use Illuminate\Container\Container;
interface Clock
{
public function now(): string;
}
final class FixedClock implements Clock
{
public function now(): string { return '10:00'; }
}
$container = new Container();
$container->bind(Clock::class, FixedClock::class);
$first = $container->make(Clock::class);
$second = $container->make(Clock::class);
echo $first->now(), "\n";
echo $first === $second ? "same\n" : "different\n";