This is a list of commands or command sets to perform the given task with PHP's package manager.
composer clearcache
composer selfupdate
<?php | |
namespace App\Services; | |
use PhpOffice\PhpSpreadsheet\IOFactory; | |
use PhpOffice\PhpSpreadsheet\Reader\IReader; | |
use PhpOffice\PhpSpreadsheet\Reader\IReadFilter; | |
use PhpOffice\PhpSpreadsheet\Worksheet\Worksheet; | |
class WorkbookReadService |
<?php | |
namespace App\Contracts; | |
interface PythonProvider | |
{ | |
public function run(string $filename, array $options): string; | |
public function install(): void; | |
} |
/** | |
* Change case of text to common programming language cases. | |
* @param {string} text - Text to change case. May contain spaces, special characters, etc. | |
* @param {string} caseType - Type of case to change to. Possible values are: | |
* - camelCase | |
* - PascalCase | |
* - snake_case | |
* - kebab-case | |
* - CONSTANT_CASE | |
* - TitleCase |
import fs from 'fs'; | |
export default function includeHtml(mode) { | |
return { | |
name: 'insert-views', | |
/** | |
* Replace HTML include comments with the content of the included file. | |
* @param {string} html | |
* @returns {string} | |
* @example <!--#include file="header.html" --> |
/secrets | |
/persist |
# This file is for unifying the coding style for different editors and IDEs | |
# editorconfig.org | |
# WordPress Coding Standards | |
# https://make.wordpress.org/core/handbook/coding-standards/ | |
root = true | |
[*] | |
charset = utf-8 |
<?php | |
/** | |
* Serves as a registry for all objects that need to be accessed globally throughout the | |
* plugin. | |
*/ | |
class Registry | |
{ | |
/** |
if ( ! function_exists( 'remove_unneeded_account_options' ) ) { | |
/** | |
* Removes user settings sections by their heading element pattern. | |
*/ | |
function remove_unneeded_account_options( $subject ) { | |
$subject = preg_replace( '#<h2>Personal Options</h2>.+?/table>#s', '', $subject, 1 ); | |
$subject = preg_replace( '#<h2>About Yourself</h2>.+?/table>#s', '', $subject, 1 ); | |
$subject = preg_replace( '#<h2>Author Archive Settings</h2>.+?/table>#s', '', $subject, 1 ); | |
$subject = preg_replace( '#<h2>Author Archive SEO Settings</h2>.+?/table>#s', '', $subject, 1 ); | |
$subject = preg_replace( '#<h2>Layout Settings</h2>.+?/table>#s', '', $subject, 1 ); |