Code Monkey home page Code Monkey logo

Comments (5)

xavhermans avatar xavhermans commented on May 18, 2024

Note that if I define an empty constructor in the class B

class A
{
    public function __construct()
    {
        echo 'foo';
    }
}

class B extends A
{
    public function __construct()
    {
    }
}

Everything is fine

from atoum.

mageekguy avatar mageekguy commented on May 18, 2024

When you mocking B, A::__construct is called because PHP call A::__construct() even if B has no constructor :

<?php

class A
{
    public function __construct()
    {
        echo 'foo';
    }
}

class B extends A {}

$b = new B(); // foo

So it's normal that the mock call the parent constructor.

from atoum.

xavhermans avatar xavhermans commented on May 18, 2024

Yes i agree with you. But in my example, class B didn't call the parent::construct().

So A::__construct() should not be executed. Maybe I missed something ?

from atoum.

mageekguy avatar mageekguy commented on May 18, 2024

So i don't understand your problem.
If you have a A class with a constructor, and a B class which extend it and has no constructor, when you do $b = new B, PHP use A::__construct() to build the B object.

from atoum.

xavhermans avatar xavhermans commented on May 18, 2024

To clarify my issue :

  • A is the mocked class
  • A inherit B
  • A has a empty __construct()
  • B has no an empty __construct()

When I was calling A, B::__construct() was called (but A didnt call parent::__construct()).

But I have just tried to do the bug again, and now it is working fine ... I don't understand what's happened the last days.

Maybe we can close this issue, and if this case arises again I will reopen it.

from atoum.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.