This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Load available payment methods for an order. | |
* | |
* @param string $order_uuid | |
* The order's UUID. | |
* | |
* @return array | |
* The available payment methods. | |
*/ | |
public function getUserPaymentMethods($order_uuid) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var ss = SpreadsheetApp.getActiveSpreadsheet(); | |
/** | |
* Runs at script installation. | |
*/ | |
function onInstall() { | |
onOpen(); | |
} | |
/** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AppBundle\Entity\Recipe: | |
type: entity | |
id: | |
id: | |
type: integer | |
generator: { strategy: AUTO } | |
fields: | |
name: | |
type: string | |
length: 100 |
OlderNewer