<?php

class Email {
	public function where($param = []) {
		echo __METHOD__;
	}
}

class User {
	static public function take($param) {
		return new $param;
	}
}

USER::take('email')->where(['id' => 1]);