assertTrue($speakerModel instanceof Speaker); $singerModel = Singer::instance(); $this->assertTrue($singerModel instanceof Singer); $this->assertSame($speakerModel, Speaker::instance()); $this->assertNotSame($speakerModel, Speaker::instance(true)); } }