public function testGetParentOld()
 {
     if (version_compare(Kernel::VERSION_ID, '20800') >= 0) {
         $this->markTestSkipped('No need to test on symfony >= 2.8');
     }
     $type = new ElFinderType();
     $this->assertEquals('text', $type->getParent());
 }
 public function testGetParent()
 {
     $type = new ElFinderType();
     $this->assertEquals(TextType::class, $type->getParent());
 }