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
1) Get the latest available packages | |
sudo apt-get update | |
2) Install PHP7 and relevant extensions | |
Core PHP: | |
sudo apt-get install php7.0-fpm php7.0-cli php7.0-common php7.0-curl | |
Extensions needed for Craft: |
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 Phone = function(phoneNumber) { | |
this.phoneNumber = phoneNumber; | |
}; | |
Phone.prototype = { | |
send: function(recipientPhoneNumber, message) { | |
console.log('sending the text message "'+ message +'" to ' + recipientPhoneNumber) | |
} | |
}; |
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
https://github.com/dashinfall3/brooks_overflow |