I have a function that looks like this
class NSNode {
function insertAfter(NSNode $node) {
...
}
}
I'd like to be able to use that function to indicate that the node is being inserted at the start, therefore it is after nothing. The way I think about that is that null
means "nothing", so I'd write my function call like this:
$myNode->insertAfter(null);
Except PHP throws an error saying that it was expecting an NSNode
object. I'd like to stick to using the strict data typing in my function, but would like to be able to specify a null-esque value.
So, short of changing it to function insertAfter($node) { }
, is there a way I can pass something else to that function?
Update: I've accepted Owen's answer because it answered the question itself. Everyone else's suggestions were really good and I'll actually be implementing them in this project, thanks!