mysql.php 186 B

123456789101112
  1. <?php namespace Laravel\Database\Grammars;
  2. class MySQL extends Grammar {
  3. /**
  4. * The keyword identifier for the database system.
  5. *
  6. * @var string
  7. */
  8. protected $wrapper = '`';
  9. }