Sign in

colleague / study-project · Files

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
bf3445776b8be23c9e284e1abdd77caabda374d9
  • study-project
  • ..
  • fixtures
  • WithFinalVirtuallyPrivateMethod.php
  • init
    d12db008
    马雄飞 authored
    7 years ago  
    Browse Code »
WithFinalVirtuallyPrivateMethod.php 199 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<?php

namespace Fixtures\Prophecy;

class WithFinalVirtuallyPrivateMethod
{
    final public function __toString()
    {
        return '';
    }

    final public function _getName()
    {
    }
}