There is an error in the class declaration:
class DatabaseChannel extends Illuminate\Notifications\Channels\DatabaseChannel
Correct would be either
use Illuminate\Notifications\Channels\DatabaseChannel as BaseDatabaseChannel
class DatabaseChannel extends BaseDatabaseChannel
or
class DatabaseChannel extends \Illuminate\Notifications\Channels\DatabaseChannel