Skip to content
Snippets Groups Projects
Select Git revision
  • 8be0434c0aa7126531a355dc833f538b3d69c036
  • master default protected
  • fix/body-raw
  • devel
  • 1.0.5
  • 1.0.4
  • 1.0.3
  • 1.0.2
  • 1.0.1
  • 1.0
10 results

TestCurlClient.php

Blame
  • AbstractMigration.php 393 B
    <?php declare(strict_types=1);
    
    namespace WPDesk\Migrations;
    
    use Psr\Log\LoggerInterface;
    
    abstract class AbstractMigration {
    
        protected $wpdb;
        protected $logger;
    
        public function __construct(\wpdb $wpdb, LoggerInterface $logger){
            $this->wpdb = $wpdb;
            $this->logger = $logger;
        }
    
        abstract public function up(): bool;
    
        public function down(): void {}
    
    }