show/hide this revision's text 6 removing a part

I have three account files (controller, model and view) and two controller files (account controller and session controller). I want all account files to share a functionality among them. I want all controller files to share an other functionality among them. The programming language I'm using doesn't support multiple inheritance, so

AccountController can't extend BaseAccount and BaseController at the same time. If I make all BaseAccount or BaseController methods empty, I can have an interface, but if I implement that interface in two different places, that is, I make a contract to implement a method in two different places, I will have duplicated code. Do interfaces solve DDD with code duplication?

interface A {
    function doStuff() {
    }
}

class B implements A {
    function doStuff() {
        // a code
    }
}

class C implements A {
    function doStuff() {
        // the same code!!!
    }
}
show/hide this revision's text 5 changed title; [made Community Wiki]

deadly diamond of death and Do interfaces solve DDD with code duplication?

I have three account files (controller, model and view) and two controller files (account controller and session controller). I want all account files to share a functionality among them. I want all controller files to share an other functionality among them. The programming language I'm using doesn't support multiple inheritance, so AccountController can't extend BaseAccount and BaseController at the same time. If I make all BaseAccount or BaseController methods empty, I can have an interface, but if I implement that interface in two different places, that is, I make a contract to implement a method in two different places, I will have duplicated code. Do interfaces solve DDD with code duplication?

interface A {
    function doStuff() {
    }
}

class B implements A {
    function doStuff() {
        // a code
    }
}

class C implements A {
    function doStuff() {
        // the same code!!!
    }
}
show/hide this revision's text 4 changed last sentence

DDD deadly diamond of death and interfaces

I have three account files (controller, model and view) and two controller files (account controller and session controller). I want all account files to share a functionality among them. I want all controller files to share an other functionality among them. The programming language I'm using doesn't support multiple inheritance, so AccountController can't extend BaseAccount and BaseController at the same time. If I make all BaseAccount or BaseController methods empty, I can have an interface, but if I implement that interface in two different places, that is, in other words, I make a contract to create implement a method in two different places, I will have duplicated code. Why do people say Do interfaces solve DDD if they require with code duplication?

show/hide this revision's text 3 separating "among them"
show/hide this revision's text 2 replacing a keyword
show/hide this revision's text 1