class One
{
private function thisfn()
{}
}
class Two
{
private function thisfn()
{}
}
is this legit? btw does it matter if it's a private/public function inside a class?
And also, can I create a new function named thisfn() outside of any class (and make it public)? like:
function thisfn()
{}