What does this Laravel container program print?

from Laravel
Laravel 13.30.1 / PHP 8.3.33 beginner 2 min

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";
Open in playground
Report an error