owns($user, $city); } public function create(User $user): bool { return true; } public function update(User $user, City $city): bool { return $this->owns($user, $city); } }